/* ==========================================================================
   CSS Imports & Design System Variables (Brainwave-inspired Theme)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&family=Source+Code+Pro:wght@400;600;700&display=swap');

:root {
  /* Background Palette */
  --bg-deep: #08080C;       /* Premium Obsidian Black */
  --bg-medium: #0E0E12;     /* Sleek Deep Slate Gray */
  --bg-light: #15151A;      /* Dark Glass Surface */

  /* Accent Colors */
  --accent-purple: #1A1822; /* Obsidian Purple Hint */
  --accent-warm: #D4A574;   /* Champagne Gold */
  --accent-cool: #E5C09B;   /* Warm Silver / Sand Gold */
  --accent-bronze: #A37E58; /* Deep Rich Bronze */
  --accent-red: #E05252;    /* Refined Crimson (Errors) */

  /* Neutral Text Palette */
  --text-primary: #F3F4F6;   /* Clean Matte Silver-White */
  --text-secondary: #A3A3AC; /* Refined Slate Silver */
  --text-tertiary: #71717A;  /* Muted Charcoal Silver */
  --text-muted: #52525B;     /* Dark Charcoal */
  --text-disabled: #3F3F46;

  /* Surface & Borders */
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-accent-gold: rgba(212, 165, 116, 0.2);
  --border-accent-cyan: rgba(229, 192, 155, 0.2);
  --border-glass: rgba(255, 255, 255, 0.04);

  /* Typography Fonts */
  --font-sora: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-grotesk: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Source Code Pro', 'Courier New', monospace;

  /* Shadows & Depth Elevation */
  --shadow-l1: 0px 8px 16px -6px rgba(0, 0, 0, 0.6);
  --shadow-l2: 0px 20px 32px -5px rgba(0, 0, 0, 0.7), 0px 8px 12px -6px rgba(0, 0, 0, 0.5);
  --shadow-l3: 0px 32px 64px -12px rgba(0, 0, 0, 0.9);
  --shadow-glow-cyan: 0px 0px 30px rgba(229, 192, 155, 0.08);
  --shadow-glow-gold: 0px 0px 30px rgba(212, 165, 116, 0.08);

  /* Layout Constants */
  --max-width: 1200px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Resets & Global Settings
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sora);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  background-color: #060609; /* Deeper elite obsidian black */
}


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

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-medium);
  border: 2px solid var(--bg-deep);
  border-radius: 9999px;
  transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ==========================================================================
   Background Tech Elements & Glowing Orbs
   ========================================================================== */
.ambient-glow {
  position: fixed; /* Fixed so glows are visible on all sections during scroll */
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.65; /* Elegant presence */
  transition: var(--transition-smooth);
}

.orb-1 {
  background: radial-gradient(circle, rgba(212, 165, 116, 0.16) 0%, rgba(212, 165, 116, 0) 70%);
  width: 50vw;
  height: 50vw;
  top: -10%;
  right: -10%;
  animation: floatOrb1 30s infinite alternate ease-in-out;
}

.orb-2 {
  background: radial-gradient(circle, rgba(229, 192, 155, 0.12) 0%, rgba(229, 192, 155, 0) 70%);
  width: 45vw;
  height: 45vw;
  bottom: -10%;
  left: -10%;
  animation: floatOrb2 35s infinite alternate ease-in-out;
}

.orb-3 {
  background: radial-gradient(circle, rgba(163, 126, 88, 0.08) 0%, rgba(163, 126, 88, 0) 70%);
  width: 55vw;
  height: 55vw;
  top: 30%;
  left: 20%;
  animation: floatOrb3 40s infinite alternate ease-in-out;
}

@keyframes floatOrb3 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -30px) scale(1.06);
  }
  100% {
    transform: translate(-30px, 40px) scale(0.94);
  }
}

.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    radial-gradient(rgba(212, 165, 116, 0.08) 1.2px, transparent 1.2px), /* Luxury Dot Mesh */
    linear-gradient(rgba(212, 165, 116, 0.015) 1px, transparent 1px),   /* Fine Lines Horizontal */
    linear-gradient(90deg, rgba(212, 165, 116, 0.015) 1px, transparent 1px); /* Fine Lines Vertical */
  background-size: 32px 32px, 128px 128px, 128px 128px;
  background-position: center top;
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
}

/* ==========================================================================
   Utility Classes & Layout Grids
   ========================================================================== */
.max-width {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.tilt-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
  transform-style: preserve-3d;
}

.gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-cool) 70%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#bg-particles {
  display: none !important; /* Hide old particle canvas for supreme speed and minimalist design */
}

/* Scroll Reveal Initial States (Liquid-glass emergence) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(8px);
  transition: 
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   Typography Standards
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-sora);
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.2;
}

.display-title {
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.subtitle {
  font-family: var(--font-sora);
  font-size: clamp(18px, 3vw, 24px);
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 24px;
}

/* ==========================================================================
   Header & Navigation (Glassmorphic)
   ========================================================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  z-index: 100;
  background: rgba(8, 8, 12, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

#main-header.scrolled {
  height: 72px;
  background: rgba(8, 8, 12, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-l1);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-warm);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(212, 165, 116, 0.5);
}

.logo-accent {
  color: var(--accent-warm);
}

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

.nav-link {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-warm);
  transition: var(--transition-fast);
}

.nav-link.active::after, .nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger Menu button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 110;
}

.hamburger-menu .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-menu.open .bar-top {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.open .bar-mid {
  opacity: 0;
  transform: scale(0);
}

.hamburger-menu.open .bar-bot {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(8, 8, 12, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 95;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.mobile-nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-nav-link:hover {
  color: var(--accent-warm);
}

/* ==========================================================================
   Buttons System
   ========================================================================== */
.btn-cta-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 36px;
  background-color: var(--accent-warm);
  color: var(--bg-deep);
  border-radius: 9999px;
  font-family: var(--font-sora);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.15);
  transition: var(--transition-fast);
  cursor: pointer;
  border: 2px solid var(--accent-warm);
}

.btn-cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: var(--accent-cool);
  border-color: var(--accent-cool);
  box-shadow: 0 10px 24px rgba(212, 165, 116, 0.3);
}

.btn-cta-primary:active {
  transform: translateY(0) scale(1);
}

.btn-cta-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-warm);
  border-radius: 9999px;
  font-family: var(--font-sora);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-cta-secondary:hover {
  background-color: rgba(212, 165, 116, 0.1);
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
  transform: translateY(-1px);
}

.btn-cta-ghost {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-cta-ghost:hover {
  color: var(--accent-cool);
}

.btn-cta-ghost svg {
  transition: var(--transition-fast);
}

.btn-cta-ghost:hover svg {
  transform: scale(1.1);
}

/* ==========================================================================
   Badges System
   ========================================================================== */
.badge-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(38, 36, 44, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  margin-bottom: 24px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-warm);
  border-radius: 50%;
  animation: pulseGlow 2s infinite;
}

.badge-text {
  font-family: var(--font-grotesk);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.accent-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(212, 165, 116, 0.08);
  border: 1px solid var(--accent-warm);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-warm);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.status-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-light);
  border: 1px solid var(--accent-purple);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 180px;
  padding-bottom: 80px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-emphasis {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--text-primary);
  border-left: 3px solid var(--accent-warm);
  padding-left: 18px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glowing-border-container {
  position: relative;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(212, 165, 116, 0.2) 100%);
  box-shadow: var(--shadow-l3);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.glowing-border-container:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-l3), 0 20px 50px rgba(212, 165, 116, 0.12);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.hero-dashboard-image {
  border-radius: 15px;
  width: 100%;
  display: block;
}

/* ==========================================================================
   Stats Bar Section
   ========================================================================== */
.stats-bar-section {
  padding: 40px 0;
  background: rgba(37, 33, 52, 0.3);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-bottom: 100px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: rgba(38, 36, 44, 0.8);
  border: 1px solid var(--accent-purple);
  border-radius: 12px;
}

.stat-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  font-family: var(--font-grotesk);
}

/* ==========================================================================
   Services Grid Section
   ========================================================================== */
/* ==========================================================================
   Services Bento Grid Section (Visual Masterpiece Edition)
   ========================================================================== */
.services-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

/* ==========================================================================
   Holographic Control Center Layout
   ========================================================================== */
.control-center-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 40px;
}

/* LEFT SIDE: Services Tab List Navigation */
.services-tab-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 5;
  justify-content: center;
}

.service-tab-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.service-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.04) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-tab-btn:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(212, 165, 116, 0.15);
  transform: translateX(6px);
}

.service-tab-btn.active {
  background: rgba(212, 165, 116, 0.04);
  border-color: var(--accent-warm);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.service-tab-btn.active::before {
  opacity: 1;
}

.tab-index {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-tertiary);
  transition: var(--transition-fast);
  letter-spacing: 0.05em;
}

.service-tab-btn.active .tab-index {
  color: var(--accent-warm);
}

.tab-info {
  flex: 1;
}

.tab-title {
  font-family: var(--font-grotesk);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  transition: var(--transition-fast);
  letter-spacing: -0.01em;
}

.tab-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  line-height: 1.4;
}

.service-tab-btn.active .tab-title {
  color: var(--accent-warm);
}

.tab-glow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-muted);
  transition: var(--transition-smooth);
}

.service-tab-btn.active .tab-glow-dot {
  background-color: var(--accent-warm);
  box-shadow: 0 0 12px var(--accent-warm);
}

/* Holographic console panels */
.holographic-console {
  position: relative;
  background: rgba(20, 18, 28, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-l2), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Futuristic Scanline screen pattern overlay */
.holographic-console::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 16, 25, 0) 50%, rgba(212, 165, 116, 0.015) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 10;
  opacity: 0.4;
}

.service-view {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(30px) scale(0.98);
  filter: blur(6px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.5s ease;
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  width: calc(100% - 80px);
}

.service-view.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  filter: blur(0);
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

.console-text-pane {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.console-service-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-cool);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.console-service-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.console-service-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.console-details-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

.sublist-heading {
  font-family: var(--font-grotesk);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--accent-purple);
  padding-bottom: 4px;
}

.console-visual-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.console-visual-pane .bento-preview {
  height: 290px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.05);
}

.console-visual-pane .phone-mockup {
  width: 170px;
  height: 236px;
}

.console-visual-pane .mini-browser {
  width: 90%;
  height: 190px;
}

.console-visual-pane .video-viewfinder {
  width: 90%;
  height: 190px;
}

.console-visual-pane .camera-focus-screen {
  width: 90%;
  height: 190px;
}

/* ==========================================================================
   Bento Previews & Interactive CSS Mockups
   ========================================================================== */
.bento-preview {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(14, 12, 21, 0.5);
  border: 1px solid var(--accent-purple);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-preview {
  border-color: rgba(212, 165, 116, 0.25);
}

/* 1. App Telemetry Preview */
.app-preview {
  height: 100%;
  min-height: 250px;
}

.telemetry-window {
  width: 90%;
  height: 90%;
  background: rgba(20, 18, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-l2);
}

.telemetry-header {
  background: #171520;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 6px;
}

.telemetry-header .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.telemetry-header .dot.red { background: var(--accent-red); }
.telemetry-header .dot.yellow { background: var(--accent-warm); }
.telemetry-header .dot.green { background: #4CAF50; }

.telemetry-title {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  margin-left: 6px;
}

.telemetry-body {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  align-items: center;
  height: calc(100% - 25px);
}

.chart-radar-container {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(229, 192, 155, 0.15);
  margin: 0 auto;
  overflow: hidden;
}

.radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(229, 192, 155, 0.1);
  border-radius: 50%;
}

.radar-circle.circle-1 { width: 50px; height: 50px; }
.radar-circle.circle-2 { width: 26px; height: 26px; }

.radar-scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, rgba(229, 192, 155, 0.15) 0deg, transparent 90deg);
  border-radius: 50%;
  animation: radarScan 4s infinite linear;
}

.radar-pulse-dot {
  position: absolute;
  top: 30%;
  left: 65%;
  width: 6px;
  height: 6px;
  background-color: var(--accent-cool);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cool);
  animation: pulseGlow 1.5s infinite;
}

.telemetry-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-bar-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-bar-group .stat-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-tertiary);
}

.telemetry-bar-track {
  width: 100%;
  height: 4px;
  background: #171520;
  border-radius: 9999px;
  overflow: hidden;
}

.telemetry-bar-fill {
  height: 100%;
  border-radius: 9999px;
}

.telemetry-bar-fill.load-cpu {
  background: var(--accent-cool);
  animation: pulseCpu 6s infinite ease-in-out;
}

.telemetry-bar-fill.load-ram {
  background: var(--accent-warm);
  animation: pulseRam 8s infinite ease-in-out;
}

.telemetry-bar-fill.load-db {
  background: #4CAF50;
  animation: pulseDb 5s infinite ease-in-out;
}

.telemetry-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 8px;
  color: #4CAF50;
  font-weight: 700;
  margin-top: 4px;
}

.green-indicator-blink {
  width: 5px;
  height: 5px;
  background: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 6px #4CAF50;
  animation: pulseGlow 2s infinite;
}

/* 2. Web Browser Preview */
.mini-browser {
  width: 85%;
  height: 160px;
  background: #171520;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-l2);
  transition: var(--transition-smooth);
}

.bento-card:hover .mini-browser {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(212, 165, 116, 0.2);
}

.browser-header {
  background: rgba(14, 12, 21, 0.5);
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-buttons {
  display: flex;
  gap: 4px;
}

.browser-buttons .dot-btn {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.browser-buttons .dot-btn.red { background: rgba(255,255,255,0.1); }
.browser-buttons .dot-btn.yellow { background: rgba(255,255,255,0.1); }
.browser-buttons .dot-btn.green { background: rgba(255,255,255,0.1); }

.browser-address {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
  background: var(--bg-deep);
  padding: 2px 12px;
  border-radius: 4px;
  width: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-body {
  height: calc(100% - 22px);
  overflow: hidden;
  position: relative;
  background: var(--bg-deep);
}

.scrolling-layout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: browserScroll 14s infinite ease-in-out;
}

.dummy-nav {
  height: 4px;
  width: 30%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  align-self: flex-end;
}

.dummy-hero {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dummy-hero .line {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
}

.dummy-hero .line.title-l { height: 6px; width: 60%; background: var(--accent-cool); opacity: 0.8; }
.dummy-hero .line.desc-l { height: 4px; width: 85%; }
.dummy-hero .line.button-l { height: 6px; width: 25%; background: var(--accent-warm); border-radius: 2px; }

.dummy-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.dummy-card {
  height: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.dummy-footer {
  height: 20px;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  margin-top: 8px;
}

/* 3. Jasa Video Preview */
.video-viewfinder {
  width: 85%;
  height: 160px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.viewfinder-corners .corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.viewfinder-corners .corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.viewfinder-corners .corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.viewfinder-corners .corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.viewfinder-corners .corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.viewfinder-status {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--accent-red);
}

.rec-dot-blink {
  width: 5px;
  height: 5px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-red);
  animation: pulseGlow 1.5s infinite;
}

.cinematic-deck {
  position: relative;
  width: 100px;
  height: 60px;
}

.cine-card {
  position: absolute;
  border-radius: 4px;
  box-shadow: var(--shadow-l1);
  transition: var(--transition-smooth);
}

.cine-card.card-a {
  width: 76px;
  height: 48px;
  left: 0;
  top: 6px;
  background: linear-gradient(135deg, #1d182b, #120e18);
  border: 1px solid var(--accent-purple);
  transform: rotate(-6deg);
}

.cine-card.card-b {
  width: 76px;
  height: 48px;
  right: 0;
  top: 6px;
  background: linear-gradient(135deg, rgba(229, 192, 155, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
  border: 1px solid var(--accent-warm);
  transform: rotate(6deg);
  z-index: 2;
}

.bento-card:hover .cine-card.card-a { transform: rotate(-12deg) translate(-5px, -2px); }
.bento-card:hover .cine-card.card-b { transform: rotate(12deg) translate(5px, -2px); border-color: var(--accent-cool); }

.floating-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: var(--text-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: floatPlay 3s infinite ease-in-out;
}

.floating-play-btn svg {
  margin-left: 2px;
}

/* 4. Fotografi Preview */
.camera-focus-screen {
  width: 85%;
  height: 160px;
  border-radius: 8px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.2);
}

.focus-crosshair {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--accent-cool);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.focus-crosshair::after {
  content: '';
  width: 2px;
  height: 2px;
  background: var(--accent-cool);
  border-radius: 50%;
}

.photo-collage {
  position: relative;
  width: 120px;
  height: 80px;
}

.photo-slice {
  position: absolute;
  border-radius: 4px;
  box-shadow: var(--shadow-l1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.photo-slice.slice-1 {
  width: 60px;
  height: 60px;
  left: 10px;
  top: 10px;
  background: linear-gradient(135deg, #252134, #0E0C15);
  transform: rotate(-10deg);
}

.photo-slice.slice-2 {
  width: 54px;
  height: 54px;
  right: 15px;
  top: 5px;
  background: linear-gradient(135deg, #2E2A41, #252134);
  transform: rotate(15deg);
  z-index: 2;
}

.photo-slice.slice-3 {
  width: 50px;
  height: 50px;
  left: 35px;
  top: 25px;
  background: linear-gradient(135deg, rgba(212,165,116,0.1), rgba(38,36,44,0.5));
  border-color: var(--accent-warm);
  transform: rotate(5deg);
  z-index: 1;
}

.bento-card:hover .photo-slice.slice-1 { transform: rotate(-18deg) translate(-10px, -5px); }
.bento-card:hover .photo-slice.slice-2 { transform: rotate(24deg) translate(10px, -5px); }
.bento-card:hover .photo-slice.slice-3 { transform: scale(1.1) rotate(0deg); border-color: var(--accent-cool); z-index: 4; }

/* 5. Automation Preview */
.automation-preview {
  height: 100%;
  min-height: 250px;
}

.phone-mockup {
  width: 160px;
  height: 220px;
  background: #0E0C15;
  border: 4px solid var(--accent-purple);
  border-radius: 20px;
  box-shadow: var(--shadow-l3);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.bento-card:hover .phone-mockup {
  transform: translateY(-2px) rotate(2deg);
  border-color: var(--accent-cool);
}

.phone-speaker {
  width: 32px;
  height: 4px;
  background: var(--accent-purple);
  border-radius: 99px;
  margin: 6px auto 4px;
  flex-shrink: 0;
}

.phone-screen {
  background: var(--bg-deep);
  height: calc(100% - 14px);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: #171520;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.chat-avatar {
  font-size: 10px;
  background: var(--bg-light);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-info {
  display: flex;
  flex-direction: column;
}

.chat-name {
  font-size: 8px;
  font-weight: 600;
  color: var(--text-primary);
}

.chat-status {
  font-size: 6px;
  color: #4CAF50;
}

.chat-body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.chat-bubble {
  max-width: 80%;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 8px;
  line-height: 1.3;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
}

.chat-bubble.client {
  align-self: flex-end;
  background: var(--bg-light);
  color: var(--text-secondary);
  border-bottom-right-radius: 1px;
}

.chat-bubble.bot {
  align-self: flex-start;
  background: rgba(212, 165, 116, 0.08);
  border: 1.5px solid var(--accent-cool);
  color: var(--text-primary);
  border-bottom-left-radius: 1px;
}

.whatsapp-check {
  font-size: 7px;
  color: var(--accent-cool);
  position: absolute;
  right: 4px;
  bottom: 2px;
  font-weight: bold;
}

/* Loops chat sequence */
#bubble-1 { animation: chatReveal1 12s infinite ease-in-out; }
#bubble-2 { animation: chatReveal2 12s infinite ease-in-out; }
#bubble-3 { animation: chatReveal3 12s infinite ease-in-out; }
#bubble-4 { animation: chatReveal4 12s infinite ease-in-out; }

/* ==========================================================================
   Animations Keyframes for Previews
   ========================================================================== */
@keyframes radarScan {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatPlay {
  0%, 100% { transform: translate(-50%, -55%); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); }
  50% { transform: translate(-50%, -45%); box-shadow: 0 8px 18px rgba(212, 165, 116, 0.2); }
}

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

/* Modulates CPU loading bar */
@keyframes pulseCpu {
  0%, 100% { width: 42%; }
  30% { width: 78%; }
  60% { width: 55%; }
  85% { width: 90%; }
}

@keyframes pulseRam {
  0%, 100% { width: 62%; }
  25% { width: 68%; }
  55% { width: 60%; }
  75% { width: 74%; }
}

@keyframes pulseDb {
  0%, 100% { width: 22%; }
  35% { width: 85%; }
  70% { width: 40%; }
}

/* Chat bubble stagger sequence animations */
@keyframes chatReveal1 {
  0%, 100% { opacity: 0; transform: translateY(8px); }
  4%, 80% { opacity: 1; transform: translateY(0); }
}
@keyframes chatReveal2 {
  0%, 18%, 100% { opacity: 0; transform: translateY(8px); }
  22%, 80% { opacity: 1; transform: translateY(0); }
}
@keyframes chatReveal3 {
  0%, 42%, 100% { opacity: 0; transform: translateY(8px); }
  46%, 80% { opacity: 1; transform: translateY(0); }
}
@keyframes chatReveal4 {
  0%, 62%, 100% { opacity: 0; transform: translateY(8px); }
  66%, 80% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   2026 Cybernetic Bento & Rich Layout Upgrades
   ========================================================================== */
.services-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}

.glow-bubble-1 {
  background: radial-gradient(circle, var(--accent-cool) 0%, transparent 70%);
  width: 35vw;
  height: 35vw;
  top: 15%;
  left: -10%;
  animation: floatOrb1 20s infinite alternate ease-in-out;
}

.glow-bubble-2 {
  background: radial-gradient(circle, var(--accent-warm) 0%, transparent 70%);
  width: 30vw;
  height: 30vw;
  bottom: 10%;
  right: -5%;
  animation: floatOrb2 25s infinite alternate ease-in-out;
}

/* Sweeping cyber laser scanner inside bento cards */
.bento-scanline {
  display: none !important; /* Disabled laser sweep for sophisticated clean human design */
}

@keyframes bentoScanline {
  0% {
    top: -5%;
    opacity: 0;
  }
  5% {
    opacity: 0.35;
  }
  95% {
    opacity: 0.35;
  }
  100% {
    top: 105%;
    opacity: 0;
  }
}

/* Modern Cyber Dot background layout inside bento cards */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Tech Tag Cloud styling */
.tech-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--accent-purple);
  border-radius: 9999px;
  font-family: var(--font-grotesk);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  cursor: default;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
}

.tech-tag:hover {
  color: var(--text-primary);
  border-color: var(--accent-cool);
  background: rgba(229, 192, 155, 0.03);
  box-shadow: 0 0 15px rgba(229, 192, 155, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.02);
  transform: translateY(-1px);
}

.premium-card .tech-tag:hover {
  border-color: var(--accent-warm);
  background: rgba(212, 165, 116, 0.03);
  box-shadow: 0 0 15px rgba(212, 165, 116, 0.12);
}

.tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.tag-dot.cyan { background: var(--accent-cool); box-shadow: 0 0 6px var(--accent-cool); }
.tag-dot.gold { background: var(--accent-warm); box-shadow: 0 0 6px var(--accent-warm); }
.tag-dot.green { background: #4CAF50; box-shadow: 0 0 6px #4CAF50; }
.tag-dot.purple { background: #9C27B0; box-shadow: 0 0 6px #9C27B0; }
.tag-dot.blue { background: #2196F3; box-shadow: 0 0 6px #2196F3; }

/* Bento Metrics Dashboard Grid */
.bento-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: auto;
  z-index: 2;
  position: relative;
}

.metric-capsule {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(20, 18, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: var(--transition-fast);
}

.metric-capsule:hover {
  border-color: rgba(229, 192, 155, 0.15);
  background: rgba(20, 18, 28, 0.85);
  transform: translateY(-2px);
  box-shadow: var(--shadow-l1);
}

.premium-card .metric-capsule:hover {
  border-color: rgba(212, 165, 116, 0.15);
}

.metric-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metric-value {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Feature Capsules List (Vertical stack) */
.service-capsules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  z-index: 2;
  position: relative;
}

.feature-capsule {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.feature-capsule:hover {
  border-color: var(--accent-purple);
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.capsule-icon {
  font-size: 16px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capsule-texts {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.capsule-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.capsule-desc {
  font-family: var(--font-sora);
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Adjust layout rules for responsive */
@media screen and (max-width: 1023px) {
  .bento-col-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .bento-features-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .bento-metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media screen and (max-width: 479px) {
  .bento-metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-tag-cloud {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   Pitch / Value Prop Section ("Bukan Sekadar Jasa IT")
   ========================================================================== */
.pitch-section {
  padding: 120px 0;
  position: relative;
}

.pitch-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.pitch-tagline {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 20px;
}

.pitch-paragraph {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pitch-paragraph-emphasis {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  border-left: 3px solid var(--accent-warm);
  padding-left: 16px;
  margin-top: 32px;
}

.pain-points-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-point-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(38, 36, 44, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 18px;
  transition: var(--transition-fast);
}

.pain-point-item:hover {
  background: rgba(255, 90, 95, 0.03);
  border-color: rgba(255, 90, 95, 0.2);
}

.pain-icon.text-red {
  color: var(--accent-red);
  font-size: 18px;
  font-weight: 700;
  background: rgba(255, 90, 95, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.pain-point-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pain-point-item p {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* Interactive Digital Impact Calculator */
.pitch-interactive-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.interactive-impact-calculator {
  width: 100%;
  background: rgba(14, 14, 18, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-l2);
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.calculator-title {
  font-family: var(--font-grotesk);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--accent-warm);
}

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

.calc-label {
  display: block;
  font-family: var(--font-grotesk);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calc-option-btn {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  padding: 12px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-family: var(--font-sora);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.calc-option-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(212, 165, 116, 0.2);
  color: var(--text-primary);
}

.calc-option-btn.active {
  background: rgba(212, 165, 116, 0.06);
  border-color: var(--accent-warm);
  color: var(--accent-warm);
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.08);
}

.calculator-outcome-pane {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 28px;
  padding-top: 24px;
}

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

.outcome-metric-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 16px;
}

.outcome-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.outcome-value {
  font-family: var(--font-grotesk);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-warm);
  text-shadow: 0 0 15px rgba(212, 165, 116, 0.15);
  line-height: 1;
  margin: 4px 0;
}

.outcome-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.outcome-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-cool), var(--accent-warm));
  box-shadow: 0 0 8px rgba(212, 165, 116, 0.3);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%;
}

.recommendation-card {
  background: rgba(212, 165, 116, 0.03);
  border: 1px dashed rgba(212, 165, 116, 0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: var(--transition-fast);
}

.recommendation-card h5 {
  font-family: var(--font-grotesk);
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.recommendation-card p {
  font-family: var(--font-sora);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-warm);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us-section {
  padding: 100px 0;
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-us-card {
  background: rgba(14, 14, 18, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-l1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 0);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 0;
}

.why-us-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-6px);
  box-shadow: var(--shadow-l2), 0 10px 24px rgba(212, 165, 116, 0.06);
}

.why-number {
  font-family: var(--font-grotesk);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.8;
}

.why-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==========================================================================
   Clients Section
   ========================================================================== */
.clients-section {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(37, 33, 52, 0.1);
  margin: 60px 0 100px;
}

.clients-title {
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.clients-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.client-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--bg-medium);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.client-badge:hover {
  transform: scale(1.04);
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.client-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.client-dot.green { background: var(--accent-bronze); box-shadow: 0 0 6px var(--accent-bronze); }
.client-dot.blue { background: #8C8C94; box-shadow: 0 0 6px #8C8C94; }
.client-dot.yellow { background: var(--accent-warm); box-shadow: 0 0 6px var(--accent-warm); }
.client-dot.purple { background: var(--text-secondary); box-shadow: 0 0 6px var(--text-secondary); }
.client-dot.orange { background: var(--accent-cool); box-shadow: 0 0 6px var(--accent-cool); }
.client-dot.cyan { background: var(--text-primary); box-shadow: 0 0 6px var(--text-primary); }

/* ==========================================================================
   Contact & Lead Form Section
   ========================================================================== */
.contact-section {
  padding: 100px 0 140px;
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.contact-info-block {
  text-align: left;
}

.contact-text-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-direct-channels {
  border-top: 1px solid var(--accent-purple);
  padding-top: 32px;
}

.channel-title {
  font-family: var(--font-grotesk);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.channel-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  width: fit-content;
}

.channel-icon.wa {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.2);
  transition: var(--transition-fast);
}

.channel-icon.email {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(212, 165, 116, 0.1);
  color: var(--accent-warm);
  border-radius: 50%;
  border: 1px solid rgba(212, 165, 116, 0.2);
  transition: var(--transition-fast);
}

.channel-link:hover .channel-icon.wa {
  background: rgba(37, 211, 102, 0.2);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.channel-link:hover .channel-icon.email {
  background: rgba(212, 165, 116, 0.2);
  box-shadow: 0 0 15px rgba(212, 165, 116, 0.3);
}

.channel-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Glass Lead Form Design */
.contact-form-block {
  display: flex;
  justify-content: center;
}

.glass-form {
  width: 100%;
  background: var(--bg-medium);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-l3);
  position: relative;
}

.glass-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(229, 192, 155, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--accent-purple);
  padding-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  font-family: var(--font-grotesk);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input {
  background: var(--bg-light);
  border: 1px solid var(--accent-purple);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-sora);
  font-size: 14px;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:hover {
  border-color: var(--text-tertiary);
}

.form-input:focus {
  border-color: var(--accent-cool);
  box-shadow: 0 0 0 3px rgba(229, 192, 155, 0.12);
}

/* Select wrapper styling */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▼';
  font-size: 10px;
  color: var(--text-tertiary);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.select-input {
  appearance: none;
  width: 100%;
  cursor: pointer;
  padding-right: 40px;
}

.select-input option {
  background: var(--bg-medium);
  color: var(--text-primary);
}

.textarea-input {
  resize: vertical;
  min-height: 100px;
}

/* Form validation error styling */
.form-input.invalid {
  border-color: var(--accent-red);
}

.error-message {
  font-size: 11px;
  color: var(--accent-red);
  margin-top: 6px;
  display: none;
}

.error-message.visible {
  display: block;
}

.btn-cta-primary.full-width {
  width: 100%;
  margin-top: 12px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
#main-footer {
  background: #0b0910;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 40px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-positioning {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-tertiary);
  margin-bottom: 28px;
  max-width: 480px;
}

.footer-tagline-quote {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-warm);
  letter-spacing: 0.05em;
}

.footer-column-title {
  font-family: var(--font-grotesk);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-list a {
  font-size: 14px;
  color: var(--text-tertiary);
}

.footer-links-list a:hover {
  color: var(--accent-cool);
  transform: translateX(3px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-taglines-list {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-grotesk);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Animations Keyframes
   ========================================================================== */
@keyframes pulseGlow {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.5);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(212, 165, 116, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(212, 165, 116, 0);
  }
}

@keyframes floatOrb1 {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  50% {
    transform: translate(30px, -40px) scale(1.05);
  }
  100% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  50% {
    transform: translate(-40px, 30px) scale(0.95);
  }
  100% {
    transform: translate(25px, -20px) scale(1.05);
  }
}

/* ==========================================================================
   Responsive Media Queries (Responsive Breakpoints)
   ========================================================================== */

/* 1280px+ Large Desktop Container limit */
@media screen and (min-width: 1280px) {
  .max-width {
    padding: 0;
  }
}

/* 1024px - 1279px Laptop Screen */
@media screen and (max-width: 1279px) {
  .max-width {
    padding: 0 32px;
  }
  
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .footer-container {
    gap: 40px;
  }
}

/* 768px - 1023px Tablet Screen */
@media screen and (max-width: 1023px) {
  /* Hero typography resize */
  .hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-emphasis {
    text-align: left;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  /* Holographic Control Center collapse */
  .control-center-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Typographic services navigation horizontal scroll on mobile */
  .services-tab-list {
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px 4px 16px;
    gap: 12px;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide scrollbar in IE */
    justify-content: flex-start;
  }

  .services-tab-list::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari/Opera */
  }

  .service-tab-btn {
    flex-shrink: 0;
    padding: 12px 20px;
    border-radius: 99px;
    width: auto;
    gap: 10px;
  }

  .service-tab-btn::before {
    border-radius: 99px;
  }

  .service-tab-btn:hover {
    transform: none; /* Disable slide hover offset on touch screens */
  }

  .service-tab-btn .tab-subtitle {
    display: none; /* Hide subtitle on mobile to keep tab pills elegant and single-line */
  }

  .service-tab-btn .tab-info {
    display: flex;
    align-items: center;
  }

  .service-tab-btn .tab-title {
    font-size: 14px;
    margin-bottom: 0;
  }

  .tab-index {
    font-size: 11px;
  }

  .holographic-console {
    padding: 24px;
    min-height: auto;
  }

  .service-view {
    grid-template-columns: 1fr;
    gap: 32px;
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
  }

  .service-view.active {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .console-visual-pane .bento-preview {
    height: 240px;
    min-height: 240px;
  }
  
  /* Pitch split collapse */
  .pitch-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  /* Why Us grid collapse */
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Contact grid collapse */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  /* Footer grid collapse */
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand-column {
    grid-column: span 2;
  }
}

/* Below 768px Mobile Screen (Hamburger Menu Activation) */
@media screen and (max-width: 767px) {
  .max-width {
    padding: 0 24px;
  }
  
  #main-header {
    height: 72px;
  }
  
  /* Menu icon display */
  .hamburger-menu {
    display: flex;
  }
  
  #desktop-nav {
    display: none;
  }
  
  #btn-header-cta {
    display: none;
  }
  
  /* Interactive Trust Card adjustment */
  .interactive-trust-card {
    padding: 24px;
  }
  
  /* Spacings adjustment */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  #service-app {
    grid-column: span 1;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-brand-column {
    grid-column: span 1;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  
  .footer-taglines-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Below 480px Small Mobile */
@media screen and (max-width: 479px) {
  .max-width {
    padding: 0 16px;
  }
  
  .hero-section {
    padding-top: 110px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions a {
    width: 100%;
    text-align: center;
  }
  
  .stats-container {
    justify-content: flex-start;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .glass-form {
    padding: 24px;
  }
}
