/* ==========================================================================
   NexBual Premium Landing Page Styling
   Theme: Dark Space Glassmorphism with Cyberpunk Accents
   ========================================================================== */

:root {
  /* Colors */
  --bg-dark: #0a0915;
  --bg-dark-accent: #110f24;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --card-border-hover: rgba(139, 92, 246, 0.3);

  --primary: #8b5cf6;
  --primary-light: #a78bfa;
  --primary-dark: #6d28d9;
  --primary-glow: rgba(139, 92, 246, 0.35);

  --secondary: #a78bfa;
  --secondary-glow: rgba(139, 92, 246, 0.35);

  --accent-magenta: #8b5cf6;
  --accent-emerald: #10b981;
  --accent-red: #ef4444;
  --accent-yellow: #fbbf24;

  --text: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #1f2937;

  --border: rgba(255, 255, 255, 0.1);
  --white: #ffffff;

  /* Layout & Sizing */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family:
    'Plus Jakarta Sans',
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

/* ==========================================================================
   Background & Glow Effects
   ========================================================================== */

.mesh-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 80%),
    radial-gradient(ellipse 50% 50% at 85% 15%, rgba(139, 92, 246, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 90%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  animation: bgFloat 25s ease-in-out infinite alternate;
}

@keyframes bgFloat {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(1%, 2%);
  }
}

.hover-grid {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    black 0,
    black 120px,
    transparent 280px
  );
  mask-image: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    black 0,
    black 120px,
    transparent 280px
  );
  transition: opacity 0.3s ease;
}

body.cursor-active .hover-grid {
  opacity: 0.25;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(10, 9, 21, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: var(--transition);
}

nav.scrolled {
  padding: 12px 0;
  background: rgba(10, 9, 21, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-mobile {
  display: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13.5px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.btn-glow:hover::after {
  opacity: 1;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-nav {
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.btn-nav:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.03);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  padding: 180px 0 100px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1) inset;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary);
  box-shadow: 0 0 10px var(--secondary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.05em;
}

.hero-section h1 {
  font-size: clamp(38px, 6.5vw, 68px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--secondary),
    var(--accent-magenta)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textShimmer 6s linear infinite;
}

@keyframes textShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-subtitle {
  font-size: 18.5px;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 48px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */

.section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

.section-dark-accent {
  background-color: var(--bg-dark-accent);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.glow-tag {
  background: rgba(139, 92, 246, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 1;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 24px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Highlighted Special Card */
.highlighted-card {
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.03));
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.06);
}

.highlighted-card .feature-icon-wrapper {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 0 15px var(--primary-glow);
}

.feature-badge-hot {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--accent-magenta), var(--primary-dark));
  color: var(--white);
  padding: 4px 10px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

/* ==========================================================================
   WhatsApp AI Simulator
   ========================================================================== */

.simulator-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.simulator-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sim-feat-item {
  display: flex;
  gap: 14px;
}

.feat-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

.sim-feat-item div {
  font-size: 15px;
  color: var(--text-muted);
}

.sim-feat-item strong {
  color: var(--white);
}

.interactive-prompt-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.select-label {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.prompt-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-prompt {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 30px;
  color: var(--white);
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-prompt:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.custom-input-wrapper {
  position: relative;
  display: flex;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.custom-input-wrapper:focus-within {
  border-color: var(--primary-light);
  box-shadow: 0 0 15px var(--primary-glow);
}

.custom-input-wrapper input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
}

.custom-input-wrapper input:focus {
  outline: none;
}

.btn-send-query {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: 0 20px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-send-query:hover {
  background: var(--primary-light);
}

/* --- Smartphone Frame --- */
.phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 320px;
  height: 580px;
  background: #111;
  border: 12px solid #222;
  border-radius: 40px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 30px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 24px;
  background: #222;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 100;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0b141a; /* Dark WhatsApp Background */
  display: flex;
  flex-direction: column;
}

/* WhatsApp Screen Header */
.mock-wa-header {
  background: #1f2c34;
  padding: 34px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-user-info {
  display: flex;
  flex-direction: column;
}

.wa-username {
  font-size: 13.5px;
  font-weight: 600;
  color: #e9edef;
  line-height: 1.2;
}

.wa-status {
  font-size: 11px;
  color: var(--accent-emerald);
  font-weight: 500;
}

.header-right {
  display: flex;
  gap: 12px;
  color: #aebac1;
  font-size: 15px;
}

.wa-action-icon {
  cursor: pointer;
}

/* WhatsApp Chat Area */
.mock-wa-chat {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-image:
    radial-gradient(#121b22 25%, transparent 25%), radial-gradient(#121b22 25%, transparent 25%);
  background-size: 12px 12px;
  background-position:
    0 0,
    6px 6px;
  background-color: #0b141a;
  scroll-behavior: smooth;
}

.mock-wa-chat::-webkit-scrollbar {
  width: 4px;
}

.mock-wa-chat::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.05);
}

.wa-date-divider {
  align-self: center;
  background: #182229;
  color: #8696a0;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  font-weight: 500;
}

.wa-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  position: relative;
  font-size: 12px;
  line-height: 1.45;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.wa-bubble.left {
  align-self: flex-start;
  background: #202c33;
  color: #e9edef;
  border-top-left-radius: 0;
}

.wa-bubble.right {
  align-self: flex-end;
  background: #005c4b; /* WhatsApp Green Sent Bubble */
  color: #e9edef;
  border-top-right-radius: 0;
}

.wa-message strong {
  color: var(--primary-light);
}

.wa-bubble.right .wa-message strong {
  color: var(--white);
}

.wa-time {
  align-self: flex-end;
  font-size: 9.5px;
  color: #8696a0;
  margin-top: 4px;
  margin-left: 20px;
  display: block;
}

.wa-bubble.right .wa-time {
  color: #86bfa3;
}

/* Typing Indicator */
.typing-indicator-bubble {
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8696a0;
  animation: waTyping 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes waTyping {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* WhatsApp Input */
.mock-wa-input {
  background: #1f2c34;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.wa-emoji-icon {
  font-size: 18px;
  color: #8696a0;
  cursor: pointer;
}

.wa-input-box {
  flex-grow: 1;
  background: #2a3942;
  border-radius: 8px;
  padding: 8px 16px;
  color: #8696a0;
  font-size: 13.5px;
}

.wa-send-icon {
  font-size: 16px;
  color: #8696a0;
  cursor: pointer;
}

/* ==========================================================================
   App Mockup Explorer
   ========================================================================== */

.mockup-explorer-wrapper {
  display: flex;
  background: rgba(16, 15, 36, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 40px rgba(139, 92, 246, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  transition: var(--transition);
}

.mockup-explorer-wrapper:hover {
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 50px rgba(139, 92, 246, 0.08);
}

/* Sidebar Inside Explorer */
.mockup-sidebar {
  width: 250px;
  background: rgba(0, 0, 0, 0.25);
  padding: 32px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.sidebar-indicator {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0px;
  background: linear-gradient(180deg, var(--primary-light), var(--secondary));
  border-radius: 0 4px 4px 0;
  transition: var(--transition);
  box-shadow: 0 0 10px var(--primary-glow);
}

.sidebar-item.active .sidebar-indicator,
.sidebar-item:hover .sidebar-indicator {
  height: 20px;
}

.sidebar-item svg {
  stroke: var(--text-muted);
  transition: var(--transition);
}

.sidebar-item:hover,
.sidebar-item.active {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.sidebar-item.active svg,
.sidebar-item:hover svg {
  stroke: var(--primary-light);
  filter: drop-shadow(0 0 4px var(--primary-glow));
}

/* Main Display Inside Explorer */
.mockup-display {
  flex-grow: 1;
  background: rgba(10, 9, 21, 0.2);
}

.display-tab-content {
  display: none;
  height: 100%;
  flex-direction: column;
  animation: tabFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.display-tab-content.active {
  display: flex;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mock App UI Elements */
.app-ui-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ui-dots {
  display: flex;
  gap: 8px;
  margin-right: 24px;
}

.ui-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.ui-dots .dot.red {
  background-color: var(--accent-red);
}
.ui-dots .dot.yellow {
  background-color: var(--accent-yellow);
}
.ui-dots .dot.green {
  background-color: var(--accent-emerald);
}

.ui-title {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.app-ui-body {
  height: 400px;
  overflow: hidden;
}

.app-ui-footer {
  background: rgba(0, 0, 0, 0.25);
  padding: 12px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.status-dot-active {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  margin-right: 6px;
  box-shadow: 0 0 8px var(--accent-emerald);
}

.status-dot-pulsing {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary);
  margin-right: 6px;
  box-shadow: 0 0 8px var(--secondary);
  animation: pulse 1.5s infinite;
}

/* UI Sembang (Chat Panel Grid) */
.grid-sidebar-chat {
  display: grid;
  grid-template-columns: 220px 1fr;
  height: 100%;
}

.ui-chat-list {
  background: rgba(0, 0, 0, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  overflow-y: auto;
  padding: 12px;
}

.ui-search-bar {
  position: relative;
  margin-bottom: 12px;
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.ui-search-bar input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 8px 12px;
  color: var(--white);
  font-size: 11px;
}

.ui-search-bar .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  opacity: 0.6;
}

.ui-chat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.ui-chat-item:hover,
.ui-chat-item.active {
  background: rgba(255, 255, 255, 0.03);
}

.avatar-container {
  position: relative;
  flex-shrink: 0;
}

.ui-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-avatar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border: none;
  box-shadow: 0 0 10px var(--primary-glow);
}

.online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border: 1.5px solid var(--bg-dark);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--accent-emerald);
}

.offline-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background-color: var(--text-muted);
  border: 1.5px solid var(--bg-dark);
  border-radius: 50%;
}

.ui-chat-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.ui-chat-meta strong {
  font-size: 12px;
  color: var(--white);
}

.ui-chat-meta span {
  font-size: 10px;
  color: var(--text-muted);
}

.ui-tag {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

.ui-tag.leads {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--primary-light);
}
.ui-tag.customer {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--secondary);
}
.ui-tag.hot {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--accent-red);
}

.ui-chat-window {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ui-chat-window-header {
  background: rgba(255, 255, 255, 0.01);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.chat-header-info strong {
  font-size: 13.5px;
  color: var(--white);
}

.header-wa-status {
  font-size: 9.5px;
  color: var(--accent-emerald);
  font-weight: 600;
}

.badge-active {
  background: rgba(16, 185, 129, 0.1);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
}

.ui-chat-window-messages {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.ui-chat-window-messages::-webkit-scrollbar {
  width: 4px;
}

.ui-chat-window-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.05);
}

.ui-chat-window-messages .msg {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.45;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  flex-direction: column;
}

.sender-name {
  font-size: 9px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 3px;
  display: block;
}

.bubble-received {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-top-left-radius: 0;
}

.bubble-sent {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border-top-right-radius: 0;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.read-receipt {
  position: absolute;
  right: 6px;
  bottom: 2px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}

.read-receipt.active {
  color: var(--secondary);
}

.ui-chat-window-input {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.input-placeholder-wrapper {
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.attachment-icon {
  font-size: 14px;
  opacity: 0.6;
  cursor: pointer;
}

.input-placeholder {
  font-size: 12px;
  color: var(--text-muted);
}

.ui-btn-send {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 11.5px;
  cursor: pointer;
  transition: var(--transition);
}

.ui-btn-send:hover {
  background: var(--primary-light);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* UI Form & Inner Styling (Ejen AI / Broadcast / Calendars) */
.ui-padded {
  padding: 24px 28px;
  overflow-y: auto;
  height: 100%;
}

.ui-form-group {
  margin-bottom: 18px;
}

.ui-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.ui-select {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 12.5px;
  width: 100%;
}

.textarea-mock {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
  height: 110px;
  overflow-y: auto;
}

.btn-full-width {
  width: 100%;
  justify-content: center;
}

/* AI Tab Layout Specifics */
.ai-progress-widget {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 12px;
  margin-top: 14px;
}

.circular-progress-container {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring {
  width: 60px;
  height: 60px;
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  stroke: rgba(255, 255, 255, 0.03);
}

.progress-ring-circle {
  stroke-dasharray: 263.89;
  stroke-dashoffset: 10.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 3px var(--primary-glow));
  transition: stroke-dashoffset 0.35s;
}

.progress-percentage-text {
  position: absolute;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
}

.progress-details {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.progress-details strong {
  font-size: 12.5px;
  color: var(--white);
}

.progress-details span {
  font-size: 10.5px;
  color: var(--text-muted);
}

.ai-toggles-block {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text);
}

.ui-switch {
  position: relative;
  width: 32px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.ui-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--white);
  transition: var(--transition);
}

.ui-switch.active {
  background-color: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
}

.ui-switch.active::after {
  left: 16px;
}

.kb-source-list {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 200px;
  overflow-y: auto;
}

.kb-source-list::-webkit-scrollbar {
  width: 4px;
}

.kb-source-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.05);
}

.kb-source-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: 6px;
}

.file-icon {
  font-size: 14px;
}

.file-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.file-meta strong {
  font-size: 11.5px;
  color: var(--white);
}

.file-meta span {
  font-size: 9.5px;
  color: var(--text-muted);
}

.file-status-ok {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--accent-emerald);
}

/* UI Broadcast Redesigned Elements */
.broadcast-monitor-redesigned {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mini-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.m-stat {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.3;
}

.m-lbl {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 600;
}

.m-val {
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.progress-box-custom {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}

.progress-bar-fill-pulsing {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation: barPulse 2s infinite linear;
}

@keyframes barPulse {
  0% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
    filter: brightness(1.2);
  }
  100% {
    opacity: 0.85;
  }
}

.progress-text-label {
  font-size: 9.5px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
}

.monitor-terminal {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px;
  height: 155px;
  overflow-y: auto;
  font-family: monospace;
  font-size: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.monitor-terminal::-webkit-scrollbar {
  width: 4px;
}

.monitor-terminal::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.05);
}

/* UI Calendar & Appointments Redesigned */
.ui-row-flex {
  display: flex;
  gap: 24px;
}

.ui-date-picker {
  flex-basis: 42%;
}

.calendar-grid-mock {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 6px;
  color: var(--text-muted);
}

.cal-day.head {
  font-weight: 800;
  color: var(--primary-light);
}

.cal-day.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 0 10px var(--primary-glow);
}

.ui-appointments-list-redesigned {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ui-appointments-list-redesigned strong {
  display: block;
  font-size: 12.5px;
  margin-bottom: 12px;
  color: var(--white);
}

.apt-item-custom {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.apt-item-custom:hover {
  background: rgba(255, 255, 255, 0.03);
}

.apt-left-side {
  display: flex;
  align-items: center;
  gap: 12px;
}

.apt-avatar-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-size: 10.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gradient-avatar-purple {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border: none;
}

.apt-details {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.time-label {
  font-size: 9px;
  color: var(--secondary);
  font-weight: 700;
}

.apt-details strong {
  font-size: 12px;
  margin-bottom: 0 !important;
}

.apt-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

.apt-badge.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-emerald);
}

.apt-badge.pending {
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.2);
  color: var(--accent-yellow);
}

/* UI Analytics / Reports Redesigned */
.analytics-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.metric-card-custom {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.metric-card-header span {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sparkline {
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.15));
}

.metric-card-custom strong {
  font-size: 22px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

.ui-chart-mock-redesigned {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 10px;
}

.ui-chart-mock-redesigned strong {
  display: block;
  font-size: 11.5px;
  margin-bottom: 12px;
}

.chart-bars-redesigned {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 130px;
  padding: 0 8px;
}

.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 28px;
  gap: 6px;
}

.v-bar {
  width: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: var(--transition);
}

.bar-col:hover .v-bar,
.bar-col.active .v-bar {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  box-shadow: 0 0 10px var(--primary-glow);
}

.bar-col.active .bar-lbl {
  color: var(--primary-light);
  font-weight: 700;
}

/* ==========================================================================
   ROI Calculator Section
   ========================================================================== */

.calculator-visual {
  display: flex;
  justify-content: center;
}

.calculator-card {
  width: 100%;
  max-width: 480px;
  background: rgba(16, 15, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.calculator-card h3 {
  font-size: 20px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--white), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider-group {
  margin-bottom: 24px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 10px;
}

.slider-labels span {
  color: var(--text-muted);
}

.slider-labels strong {
  color: var(--primary-light);
}

.calc-slider {
  width: 100%;
  accent-color: var(--primary-light);
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
}

.savings-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
}

.highlight-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
}

.highlight-result-row span:first-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.text-glow {
  color: var(--accent-emerald);
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.font-bold {
  font-weight: 700;
}

.calculator-bullet-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calculator-bullet-points p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.calculator-bullet-points strong {
  color: var(--white);
}

/* ==========================================================================
   Target Industries Section
   ========================================================================== */

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

.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 36px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.ind-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.industry-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-card-single {
  background: rgba(16, 15, 36, 0.85);
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(139, 92, 246, 0.15);
  backdrop-filter: blur(20px);
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
}

/* Highlight badge */
.founder-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent-magenta));
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.pricing-card-header h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.price-old {
  font-size: 24px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.price-new {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.price-period {
  font-size: 14.5px;
  color: var(--primary-light);
  font-weight: 600;
}

.savings-guarantee {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  color: var(--primary-light);
  font-size: 13.5px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 36px;
}

.savings-guarantee strong {
  color: var(--white);
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.pricing-features-list li {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.pricing-features-list li span {
  color: var(--accent-emerald);
  font-weight: 800;
}

.pricing-card-footer {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  text-align: center;
}

.pricing-card-footer .btn {
  width: 100%;
  max-width: 480px;
}

.urgency-warning {
  font-size: 11.5px;
  color: var(--accent-yellow);
  margin-top: 16px;
  font-weight: 600;
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(139, 92, 246, 0.2);
}

.faq-item.open {
  background: rgba(139, 92, 246, 0.02);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.03);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 30px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  color: var(--white);
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: var(--primary-light);
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s cubic-bezier(0, 1, 0, 1),
    padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 30px 24px;
  transition:
    max-height 0.3s cubic-bezier(1, 0, 1, 0),
    padding 0.3s ease;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   CTA Hubungi Section
   ========================================================================== */

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  padding: 64px 24px;
}

.cta-container h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.cta-footer-info {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.divider-dot {
  color: var(--primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 48px 0;
  position: relative;
  z-index: 10;
}

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

.footer-left {
  font-size: 12.5px;
  color: var(--text-muted);
}

.disclaimer {
  font-size: 10.5px;
  margin-top: 6px;
  opacity: 0.6;
}

.footer-right {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-right a:hover {
  color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

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

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .phone-wrapper {
    order: -1; /* Puts smartphone on top in mobile */
  }

  .calculator-visual {
    order: -1;
  }

  .mockup-explorer-wrapper {
    flex-direction: column;
  }

  .mockup-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding: 16px;
  }

  .sidebar-item {
    white-space: nowrap;
    padding: 10px 16px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-mobile {
    display: flex;
    flex-direction: column;
    background: var(--bg-dark-accent);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: var(--transition);
    gap: 16px;
  }

  .nav-mobile.open {
    max-height: 400px;
    opacity: 1;
  }

  .nav-mobile a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 6px 0;
  }

  .nav-mobile a:hover {
    color: var(--white);
  }

  .hero-stats {
    flex-direction: column;
    padding: 20px;
    width: 100%;
  }

  .stat-item {
    padding: 12px 0;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-single {
    padding: 28px;
  }

  .pricing-features-list {
    margin-bottom: 12px;
  }

  .footer-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .ui-row-flex {
    flex-direction: column;
    gap: 20px;
  }

  .grid-sidebar-chat {
    grid-template-columns: 1fr;
  }

  .ui-chat-list {
    display: flex;
    overflow-x: auto;
    padding: 6px;
    gap: 8px;
  }

  .ui-chat-item {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 150px;
  }
}

/* ==========================================================================
   Testimonials & Floating WA Widget (Redesigned)
   ========================================================================== */

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}
.highlighted-test-card {
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.03));
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.06);
}
.test-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.test-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.gradient-avatar-purple {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.test-user-info h4 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 2px;
}
.test-user-info span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}
.test-stars {
  color: var(--accent-yellow);
  font-size: 14px;
  letter-spacing: 2px;
}
.test-comment {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  font-style: italic;
}

/* Floating WA Widget */
.floating-wa-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  transition: all 0.3s ease;
}
.floating-wa-widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}
.wa-widget-icon {
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 15px rgba(139, 92, 246, 0.4),
    0 0 20px rgba(139, 92, 246, 0.15);
  transition: all 0.3s ease;
}
.floating-wa-widget:hover .wa-widget-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow:
    0 6px 20px rgba(139, 92, 246, 0.6),
    0 0 30px rgba(139, 92, 246, 0.3);
}
.floating-wa-widget::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.25);
  z-index: -1;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.wa-widget-tooltip {
  position: absolute;
  right: 75px;
  background: rgba(17, 15, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.floating-wa-widget:hover .wa-widget-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .floating-wa-widget {
    bottom: 20px;
    right: 20px;
  }
  .wa-widget-icon {
    width: 50px;
    height: 50px;
  }
}
