/*
=========================================
  STEPSYNC ENTERPRISE - GLOBAL STYLE SHEET
  Light Cyberpunk, Glassmorphism, 3D Transforms
=========================================
*/

:root {
  /* High-Contrast Light Cyberpunk Color Palette */
  --bg-deep: #f8fafc; /* Slate 50 */
  --bg-dark: #f1f5f9; /* Slate 100 */
  --bg-card: rgba(255, 255, 255, 0.8); /* Frosted glass white */
  
  --accent-cyan: #0891b2; /* Cyber cyan */
  --accent-purple: #7c3aed; /* Electric purple */
  --accent-glow: rgba(8, 145, 178, 0.25);
  --accent-glow-purple: rgba(124, 58, 237, 0.25);
  
  --text-primary: #0f172a; /* Slate 900 */
  --text-secondary: #334155; /* Slate 700 */
  --text-muted: #64748b; /* Slate 500 */
  --text-light: #94a3b8; /* Slate 400 */
  
  --success-green: #059669; /* Rich green */
  --warning-amber: #d97706; /* Rich amber */
  --error-red: #dc2626; /* Rich red */
  
  --glass-border: rgba(15, 23, 42, 0.08);
  --glass-border-glow: rgba(8, 145, 178, 0.2);
  
  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-deep);
  color: var(--text-secondary);
  font-family: var(--font-body);
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
body::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.1);
  border-radius: 4px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p {
  line-height: 1.6;
  color: var(--text-secondary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.gradient-text-purple {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-full {
  background: linear-gradient(90deg, var(--text-primary) 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-text {
  text-shadow: 0 0 15px var(--accent-glow);
}

.monospace-info {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 14px;
}

/* CUSTOM CURSOR */
.custom-cursor {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.custom-cursor-dot {
  width: 4px;
  height: 4px;
  background-color: var(--accent-purple);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}

.custom-cursor.hovered {
  width: 50px;
  height: 50px;
  background-color: rgba(8, 145, 178, 0.08);
  border-color: var(--accent-purple);
}

/* LOADING SCREEN */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-deep);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

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

.logo-3d-wrapper {
  perspective: 1000px;
  margin-bottom: 25px;
}

.loader-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 16px;
  box-shadow: 0 0 20px var(--accent-glow);
  animation: logoSpin 3s infinite linear;
}

.loader-content h2 {
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.loader-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background-color: rgba(15, 23, 42, 0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  box-shadow: 0 0 8px var(--accent-cyan);
  transition: width 0.1s ease;
}

.progress-percentage {
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  font-size: 14px;
}

@keyframes logoSpin {
  0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

/* AMBIENT WEBGL BG */
.ambient-webgl-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  pointer-events: none;
}

/* FIXED NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  background: rgba(248, 250, 252, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: height 0.3s ease, background 0.3s ease;
}

.navbar.shrunk {
  height: 70px;
  background: rgba(248, 250, 252, 0.95);
}

.nav-container {
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-white);
  box-shadow: 0 0 10px var(--accent-glow);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
}

.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: -3px;
  letter-spacing: 0.5px;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 5px var(--accent-cyan);
}

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

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

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

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.hamburger-menu span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE NAV PANEL */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-panel.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.mobile-nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* BUTTONS */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 12px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--accent-glow);
}

.btn-secondary {
  background: var(--bg-deep);
  color: var(--text-primary);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  background: rgba(8, 145, 178, 0.03);
  box-shadow: 0 0 10px rgba(8, 145, 178, 0.1);
  transform: translateY(-2px);
}

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

.btn-md {
  padding: 14px 28px;
  font-size: 16px;
}

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

.w-full {
  width: 100%;
}

/* PROGRESS BAR */
.progress-bar-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  z-index: 101;
  box-shadow: 0 0 6px var(--accent-cyan);
}

.bottom-progress-bar {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 90%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progress-line-track {
  width: 100%;
  height: 2px;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 1px;
  position: relative;
}

.progress-line-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-cyan);
  box-shadow: 0 0 5px var(--accent-cyan);
}

.section-markers {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.marker-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.15);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.marker-dot.active {
  background-color: var(--accent-cyan);
  border-color: rgba(8, 145, 178, 0.2);
  box-shadow: 0 0 8px var(--accent-cyan);
  transform: scale(1.3);
}

.marker-dot:hover {
  background-color: var(--text-primary);
  transform: scale(1.2);
}

/* SCROLL HINT */
.scroll-hint {
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.scroll-hint.fade-out {
  opacity: 0;
  pointer-events: none;
}

.scroll-hint-arrow {
  animation: hintPulse 1.5s infinite ease-in-out;
  color: var(--accent-cyan);
  font-size: 18px;
}

@keyframes hintPulse {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* HORIZONTAL CONTAINER (Now Vertical Layout) */
.horizontal-container {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: auto;
  overflow-y: visible;
  overflow-x: hidden;
}

/* SECTIONS */
.section {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 60px 80px;
}

.section-content {
  width: 100%;
  max-width: 1500px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cyber-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(8, 145, 178, 0.05);
  border: 1px solid rgba(8, 145, 178, 0.2);
  border-radius: 20px;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.cyber-badge-sm {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  color: var(--accent-purple);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-description {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 40px;
}

.section-description.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* FLEX AND GRID UTILITIES */
.flex-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.grid-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  height: 100%;
}

/* GLASS CARD DEF */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-card:hover {
  border-color: rgba(8, 145, 178, 0.3);
  box-shadow: 0 15px 35px rgba(8, 145, 178, 0.06), 0 0 1px rgba(8, 145, 178, 0.05);
}

/* =========================================
  SECTION 1: HERO LANDING
========================================= */
.grid-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 30px;
  align-items: center;
  height: 100%;
}

.hero-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.hero-title {
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-subtext {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 35px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}

.roi-cards-container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 750px;
}

.roi-card {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.roi-number {
  font-size: clamp(26px, 2.5vw, 36px);
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.roi-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-left-3d, .hero-right-3d {
  height: 80%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.canvas-container-3d {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.holo-play-button {
  width: 75px;
  height: 75px;
  position: relative;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.holo-play-ring {
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--accent-cyan);
  border-radius: 50%;
  position: absolute;
  animation: playRingPulse 2s infinite ease-out;
  box-shadow: 0 0 10px var(--accent-glow);
}

.holo-play-triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--accent-cyan);
  margin-left: 6px;
}

@keyframes playRingPulse {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

.hero-technical-badges {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 25px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.glass-pill {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

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

.glow-cyan { background-color: var(--accent-cyan); box-shadow: 0 0 5px var(--accent-cyan); }
.glow-purple { background-color: var(--accent-purple); box-shadow: 0 0 5px var(--accent-purple); }
.glow-green { background-color: var(--success-green); box-shadow: 0 0 5px var(--success-green); }

/* =========================================
  SECTION 2: PROBLEM STATEMENT
========================================= */
.split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 15px;
}

.pain-card {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.pain-icon-wrapper {
  width: 44px;
  height: 44px;
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon {
  font-size: 20px;
}

.pain-content h4 {
  font-size: 16px;
  margin-bottom: 3px;
  color: var(--text-primary);
}

.pain-content p {
  font-size: 13px;
  color: var(--text-secondary);
}

.pain-stat {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--error-red);
}

.problem-visual-wrapper {
  height: 480px;
  width: 100%;
  position: relative;
}

.problem-card-overlay {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid var(--error-red);
  padding: 12px 24px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.15);
}

.warning-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--error-red);
  letter-spacing: 1px;
}

.warning-blink {
  animation: textBlink 1s infinite alternate;
}

@keyframes textBlink {
  0% { opacity: 0.2; }
  100% { opacity: 1; }
}

/* =========================================
  SECTION 3: SOLUTION OVERVIEW
========================================= */
.solution-visual-showcase {
  position: relative;
  width: 100%;
  height: 520px;
  max-width: 900px;
  margin: 20px auto 40px;
}

.orb-orb-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 10px 16px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
  cursor: help;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.orb-orb-item:hover {
  transform: scale(1.08) translateY(-3px);
  border-color: var(--accent-cyan);
}

.orb-sphere {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.animate-pulse-cyan {
  background: rgba(8, 145, 178, 0.05);
  box-shadow: 0 0 8px rgba(8, 145, 178, 0.4);
  border: 1px solid var(--accent-cyan);
  animation: orbPulseCyan 2s infinite ease-in-out;
}

.animate-pulse-purple {
  background: rgba(124, 58, 237, 0.05);
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
  border: 1px solid var(--accent-purple);
  animation: orbPulsePurple 2s infinite ease-in-out;
}

.orb-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Tooltip on Orb elements */
.orb-orb-item::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 220px;
  padding: 12px;
  background: var(--bg-deep);
  border: 1.5px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.5;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.orb-orb-item:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Position mapping */
.orb-tl { top: 15%; left: 0%; }
.orb-tr { top: 15%; right: 0%; }
.orb-bl { bottom: 20%; left: 0%; }
.orb-br { bottom: 20%; right: 0%; }

@keyframes orbPulseCyan {
  0%, 100% { box-shadow: 0 0 5px rgba(8, 145, 178, 0.3); }
  50% { box-shadow: 0 0 12px rgba(8, 145, 178, 0.6); }
}

@keyframes orbPulsePurple {
  0%, 100% { box-shadow: 0 0 5px rgba(124, 58, 237, 0.3); }
  50% { box-shadow: 0 0 12px rgba(124, 58, 237, 0.6); }
}

/* =========================================
  SECTION 4: CORE FEATURES - VIDEO GEN
========================================= */
.sticky-tech-left {
  position: relative;
  align-self: center;
}

.tech-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-step-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tech-step-item.active {
  background: var(--bg-card);
  border-color: rgba(8, 145, 178, 0.2);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.tech-step-icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,0.03);
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,0.05);
}

.tech-step-item.active .tech-step-icon {
  background: rgba(8, 145, 178, 0.05);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 8px rgba(8, 145, 178, 0.1);
}

.tech-step-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.tech-step-info p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.tech-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-cyan);
  padding: 3px 8px;
  background: rgba(8, 145, 178, 0.05);
  border-radius: 4px;
}

.interactive-stage-carousel-wrapper {
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

/* 3D Flipping Card */
.interactive-stage-card {
  width: 100%;
  max-width: 480px;
  height: 360px;
  perspective: 1200px;
  border: none;
  background: transparent;
}

.stage-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interactive-stage-card:hover .stage-card-inner {
  transform: rotateY(180deg);
}

.stage-front, .stage-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  padding: 24px;
}

.stage-front {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
}

.stage-header {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  padding-bottom: 12px;
}

.stage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.stage-dot.red { background-color: var(--error-red); }
.stage-dot.yellow { background-color: var(--warning-amber); }
.stage-dot.green { background-color: var(--success-green); }

.stage-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 8px;
}

.stage-body {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}

.stage-footer {
  border-top: 1px solid rgba(15,23,42,0.06);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.code-badge {
  font-size: 11px;
  color: var(--accent-purple);
  font-weight: 500;
}

.hover-flip-hint {
  font-size: 11px;
  color: var(--text-light);
}

.stage-back {
  background: #ffffff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.stage-back h3 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(15,23,42,0.1);
  padding-bottom: 10px;
  color: var(--accent-cyan);
}

.tech-specs-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid rgba(15,23,42,0.04);
  padding-bottom: 8px;
}

.tech-spec-label {
  color: var(--text-secondary);
}

.tech-spec-value {
  font-family: var(--font-mono);
  color: var(--text-primary);
}

.carousel-indicators {
  display: flex;
  gap: 8px;
}

.carousel-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15,23,42,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-bullet.active {
  background: var(--accent-cyan);
  transform: scale(1.3);
  box-shadow: 0 0 5px var(--accent-cyan);
}

/* =========================================
  SECTION 5: AUTO-HEAL SPLIT VIEW
========================================= */
.split-comparison-3d {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 1100px;
  margin: 30px auto 50px;
  perspective: 1200px;
}

.comparison-pane {
  flex: 1;
  height: 380px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transform-style: preserve-3d;
}

.comparison-pane.before-pane {
  transform: rotateY(15deg);
}

.comparison-pane.after-pane {
  transform: rotateY(-15deg);
  border-color: rgba(5, 150, 105, 0.2);
}

.pane-badge {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
}
.pane-badge.red { background: rgba(220, 38, 38, 0.05); border: 1px solid var(--error-red); color: var(--error-red); }
.pane-badge.green { background: rgba(5, 150, 105, 0.05); border: 1px solid var(--success-green); color: var(--success-green); }

.pane-graphic {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.frustrated-avatar, .success-avatar {
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.frustrated-avatar { background: rgba(220, 38, 38, 0.03); border: 1.5px dashed var(--error-red); }
.success-avatar { background: rgba(5, 150, 105, 0.03); border: 1.5px solid var(--success-green); }

.pane-metric-grid {
  display: flex;
  gap: 25px;
  text-align: center;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 2px;
}

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

.text-red { color: var(--error-red) !important; }
.text-green { color: var(--success-green) !important; }

.file-pile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.file-item {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(15,23,42,0.06);
}

.file-item.red { background: rgba(220, 38, 38, 0.03); color: rgba(220, 38, 38, 0.8); text-decoration: line-through; }
.file-item.green { background: rgba(5, 150, 105, 0.03); color: var(--success-green); border-color: rgba(5, 150, 105, 0.2); }

.badge-success {
  float: right;
  font-size: 10px;
  background: var(--success-green);
  color: var(--bg-deep);
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 700;
}

.vs-divider-3d {
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 10;
}

.vs-ring {
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.vs-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pane-footer p {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1100px;
}

.feature-card-glow {
  padding: 24px;
}

.feature-card-glow:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 10px 25px var(--accent-glow-purple);
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-card-header h3 {
  font-size: 18px;
}

.card-icon {
  font-size: 24px;
}

.feature-card-glow p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.card-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--text-secondary);
}

/* =========================================
  SECTION 6: INTEGRATIONS & ANALYTICS
========================================= */
.grid-integrations-analytics {
  width: 100%;
  max-width: 1100px;
  height: 480px;
  position: relative;
  margin-top: 20px;
}

.integrations-orbit-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  z-index: 5;
}

.analytics-centerpiece {
  padding: 24px;
}

.dashboard-header {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-status {
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  display: inline-block;
}

.dashboard-stats-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dashboard-stat {
  display: flex;
  flex-direction: column;
}

.dashboard-val {
  font-size: 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

.dashboard-lbl {
  font-size: 11px;
  color: var(--text-secondary);
}

.chart-container-3d {
  width: 100%;
  height: 110px;
  background: rgba(15,23,42,0.01);
  border-radius: 8px;
  border: 1px solid rgba(15,23,42,0.04);
  padding: 10px;
  position: relative;
}

.chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-legend {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
  font-size: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
}

.legend-color-red { width: 6px; height: 6px; background-color: var(--error-red); border-radius: 50%; display: inline-block; }
.legend-color-cyan { width: 6px; height: 6px; background-color: var(--accent-cyan); border-radius: 50%; display: inline-block; }

.orbit-card {
  position: absolute;
  width: 155px;
  height: 95px;
  perspective: 600px;
  z-index: 2;
}

.orbit-inner {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.orbit-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.orbit-card h4 {
  font-size: 13px;
  margin: 4px 0 2px;
  color: var(--text-primary);
}

.orbit-card p {
  font-size: 10px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.orbit-status {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--success-green);
  align-self: flex-end;
  text-transform: uppercase;
}

/* Orbit position layout */
.card-znd { top: 0%; left: 10%; }
.card-int { top: 0%; right: 10%; }
.card-sfc { top: 40%; right: 0%; }
.card-d360 { bottom: 0%; right: 10%; }
.card-cfl { bottom: 0%; left: 10%; }
.card-not { top: 40%; left: 0%; }
.card-git { top: -15%; left: 42%; }
.card-slk { bottom: -15%; left: 42%; }

/* Widget Mockup Demo */
.widget-demo-mockup {
  width: 100%;
  max-width: 900px;
  height: 280px;
  margin-top: 60px;
  overflow: hidden;
}

.widget-browser-bar {
  background: rgba(15,23,42,0.02);
  border-bottom: 1px solid rgba(15,23,42,0.05);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.widget-browser-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15,23,42,0.15);
}

.widget-url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(0,0,0,0.03);
  padding: 2px 16px;
  border-radius: 4px;
  margin-left: 20px;
  width: 250px;
}

.widget-demo-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  height: calc(100% - 35px);
}

.main-dashboard-mock {
  padding: 20px;
  background: rgba(15,23,42,0.01);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mock-nav {
  height: 20px;
  background: rgba(15,23,42,0.03);
  border-radius: 4px;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  flex-grow: 1;
}

.mock-col {
  background: rgba(15,23,42,0.02);
  border-radius: 6px;
  padding: 20px;
  position: relative;
}

.button-target-mock {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-action-btn {
  background: rgba(8, 145, 178, 0.05);
  border: 1px solid rgba(8, 145, 178, 0.2);
  color: var(--accent-cyan);
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
}

.step-widget-anchor {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.glow-cyan-pulse {
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulseAnchor 1.5s infinite alternate;
}

@keyframes pulseAnchor {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; }
}

.embedded-help-widget {
  border-radius: 0;
  border-left: 1px solid rgba(15,23,42,0.05);
  border-bottom: none;
  border-right: none;
  border-top: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget-header-text h5 {
  font-size: 13px;
}

.widget-header-text span {
  font-size: 10px;
  color: var(--text-muted);
}

.widget-video-player {
  flex-grow: 1;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(15,23,42,0.05);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-loader-mock {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(8, 145, 178, 0.15);
  border-top: 2px solid var(--accent-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.video-overlay-text {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--success-green);
  background: rgba(255, 255, 255, 0.95);
  padding: 2px 6px;
  border-radius: 3px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* =========================================
  SECTION 7: SECURITY & COMPLIANCE
========================================= */
.security-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}

.security-card {
  padding: 20px;
}

.security-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.security-card-header h4 {
  font-size: 15px;
}

.security-card p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.card-tech {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-cyan);
}

.compliance-logos {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.badge-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  background: rgba(15,23,42,0.05);
  border-radius: 4px;
  color: var(--text-secondary);
}

.security-vault-wrapper {
  width: 100%;
  height: 460px;
  position: relative;
}

.shield-pulse-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: scaleShield 3s infinite alternate ease-in-out;
}

@keyframes scaleShield {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.compliance-timeline-container {
  grid-column: 1 / -1;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0;
  padding: 0 60px;
}

.compliance-track {
  width: 100%;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
}

.timeline-line {
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: rgba(15, 23, 42, 0.05);
  z-index: 1;
}

.timeline-nodes {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.node-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(15,23,42,0.1);
  transition: all 0.5s ease;
}

.timeline-node span {
  font-size: 11px;
  color: var(--text-secondary);
}

.timeline-node.active .node-circle {
  background: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
}

.timeline-node.active span {
  color: var(--text-primary);
}

/* =========================================
  SECTION 8: PRICING
========================================= */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.toggle-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-light);
  transition: color 0.3s;
}

.toggle-label.active {
  color: var(--text-primary);
}

.save-badge {
  font-size: 11px;
  background: rgba(8, 145, 178, 0.05);
  border: 1px solid rgba(8, 145, 178, 0.2);
  color: var(--accent-cyan);
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
}

.pricing-toggle {
  width: 50px;
  height: 26px;
  background: rgba(15,23,42,0.05);
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 15px;
  cursor: pointer;
  position: relative;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 18px;
  height: 18px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--accent-cyan);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pricing-toggle.active .toggle-slider {
  transform: translateX(22px);
  background-color: var(--accent-purple);
  box-shadow: 0 0 5px var(--accent-purple);
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1100px;
  align-items: stretch;
}

.pricing-card {
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.pro-card {
  border-color: rgba(8, 145, 178, 0.3);
  box-shadow: 0 15px 35px rgba(8, 145, 178, 0.06), inset 0 1px 0 rgba(255,255,255,0.8);
  transform: scale(1.03);
}

.card-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05), transparent 70%);
  pointer-events: none;
  border-radius: 16px;
}

.pro-ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: var(--text-white);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 25px;
}

.price-container .currency {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-muted);
}

.price-val {
  font-size: 48px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

.price-container .duration {
  font-size: 14px;
  color: var(--text-muted);
}

.price-val-custom {
  font-size: 38px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: inline-block;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 13px;
  color: var(--text-secondary);
}

.pricing-cta {
  width: 100%;
  padding: 14px;
}

.pricing-disclaimer {
  margin-top: 35px;
  font-size: 12px;
  color: var(--text-muted);
}

/* =========================================
  SECTION 9: FOUNDERS
========================================= */
.founders-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1000px;
  margin-top: 20px;
}

.founder-card {
  padding: 30px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 25px;
  align-items: center;
}

.founder-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.founder-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
}

.founder-photo-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.avatar-emoji {
  font-size: 44px;
  z-index: 2;
}

.canvas-founder-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.founder-info h3 {
  font-size: 20px;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.founder-role {
  font-size: 13px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.founder-bio {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.founder-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.social-icon {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--accent-cyan);
  text-decoration: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(8,145,178,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-quote {
  font-size: 12px;
  font-style: italic;
  color: var(--text-muted);
}

.corporate-info-panel {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
  padding: 24px 35px;
}

.corporate-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.details-left h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.details-left .monospace-info {
  margin-bottom: 4px;
}

.address-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.details-right p {
  font-size: 13px;
  margin-bottom: 6px;
}

.details-right a {
  text-decoration: none;
}

.mini-india-map {
  margin-top: 15px;
  height: 60px;
  border: 1px solid rgba(15,23,42,0.04);
  background: rgba(0,0,0,0.02);
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.hyderabad-marker-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulseAnchor 1s infinite alternate;
}

.map-label {
  font-size: 11px;
  color: var(--text-secondary);
  margin-left: 12px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

/* =========================================
  SECTION 10: ABOUT & ROADMAP
========================================= */
.about-story-paragraphs p {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.about-visual-headquarters {
  height: 240px;
  width: 100%;
  margin-top: 25px;
  overflow: hidden;
  position: relative;
}

.hq-banner {
  background: rgba(15,23,42,0.01);
  border-bottom: 1px solid rgba(15,23,42,0.04);
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--accent-cyan);
}

.roadmap-timeline-vertical-wrapper {
  width: 100%;
  max-width: 500px;
  height: 520px;
  overflow-y: auto;
  border-left: 2px solid rgba(15,23,42,0.03);
  padding-left: 30px;
  position: relative;
}

.roadmap-timeline-vertical-wrapper::-webkit-scrollbar {
  width: 4px;
}
.roadmap-timeline-vertical-wrapper::-webkit-scrollbar-thumb {
  background: rgba(15,23,42,0.05);
  border-radius: 2px;
}

.roadmap-scroll-indicator {
  position: absolute;
  top: 10px;
  right: 0;
  font-family: var(--font-heading);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
}

.roadmap-nodes-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 10px 0;
}

.roadmap-node-card {
  position: relative;
  padding-left: 20px;
}

.node-icon-dot {
  position: absolute;
  left: -41px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid rgba(15,23,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-secondary);
  z-index: 2;
}

.roadmap-node-card.complete .node-icon-dot {
  background-color: var(--success-green);
  border-color: var(--success-green);
  color: var(--bg-deep);
  font-weight: 700;
}

.roadmap-node-card.active .node-icon-dot {
  background-color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
}

.roadmap-node-card.upcoming .node-icon-dot {
  border-color: var(--warning-amber);
}

.roadmap-node-card.planned .node-icon-dot {
  border-color: var(--accent-purple);
}

.node-content {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 20px;
}

.node-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}

.node-content h4 {
  font-size: 15px;
  margin: 2px 0 6px;
  color: var(--text-primary);
}

.node-content p {
  font-size: 12px;
  color: var(--text-secondary);
}

/* =========================================
  SECTION 11: TESTIMONIALS & CAROUSEL
========================================= */
.carousel-3d-wrapper {
  position: relative;
  width: 100%;
  max-width: 850px;
  height: 320px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-3d-track {
  width: 100%;
  height: 100%;
  position: relative;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  position: absolute;
  width: 520px;
  height: 250px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, -200px) rotateY(0deg);
}

.testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0px) scale(1);
  z-index: 10;
}

.testimonial-card.prev {
  opacity: 0.4;
  transform: translate3d(-180px, 0, -100px) rotateY(25deg) scale(0.9);
  z-index: 5;
}

.testimonial-card.next {
  opacity: 0.4;
  transform: translate3d(180px, 0, -100px) rotateY(-25deg) scale(0.9);
  z-index: 5;
}

.rating-stars {
  color: var(--warning-amber);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.quote {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  flex-grow: 1;
}

.author-info {
  margin-top: 15px;
}

.author-name {
  font-size: 14px;
  color: var(--accent-cyan);
}

.author-title {
  font-size: 11px;
  color: var(--text-secondary);
}

.card-logo-placeholder {
  position: absolute;
  bottom: 25px;
  right: 35px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  opacity: 0.2;
  color: var(--text-primary);
}

.carousel-control {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.carousel-control:hover {
  border-color: var(--accent-cyan);
  background: rgba(8,145,178,0.03);
}

.prev-btn { left: -50px; }
.next-btn { right: -50px; }

.carousel-dots {
  position: absolute;
  bottom: -30px;
  display: flex;
  gap: 8px;
}

.carousel-dots .carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(15,23,42,0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dots .carousel-dot.active {
  background: var(--accent-cyan);
  transform: scale(1.3);
}

.logo-wall-section {
  margin-top: 60px;
  width: 100%;
  max-width: 1000px;
}

.logo-wall-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.logo-wall-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.logo-item {
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
}

.logo-item:hover {
  border-color: var(--accent-cyan);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* =========================================
  SECTION 12: FINAL CTA & FOOTER
========================================= */
.footer-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding-bottom: 0px;
}

.footer-cta-container {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(180deg, rgba(8, 145, 178, 0.02) 0%, transparent 100%);
  border-radius: 20px;
  border: 1px solid rgba(8, 145, 178, 0.05);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.canvas-container-3d#canvas-footer-bg-logo {
  opacity: 0.1;
  pointer-events: none;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 15px 0 30px;
}

.cta-button-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}

.trust-icons-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.trust-badge-item {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  padding: 35px 0 25px;
  text-align: left;
}

.col-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-size: 20px;
  color: var(--text-primary);
}

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

.footer-address {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-contact {
  font-size: 12px;
  color: var(--text-secondary);
}

.footer-contact a {
  text-decoration: none;
}

.footer-legal-nos {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.footer-col h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 12.5px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

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

.hiring-bubble {
  font-size: 9px;
  background: rgba(8,145,178,0.05);
  border: 1px solid rgba(8,145,178,0.25);
  color: var(--accent-cyan);
  padding: 1px 5px;
  border-radius: 8px;
  margin-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

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

.footer-social-icons a {
  font-family: var(--font-heading);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  transition: all 0.3s;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(15,23,42,0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icons a:hover {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  transform: translateY(-2px);
}

.footer-policy-links {
  display: flex;
  gap: 16px;
}

.footer-policy-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-policy-links a:hover {
  color: var(--accent-cyan);
}

/* =========================================
  MODAL POPUP
========================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 440px;
  padding: 35px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-color: rgba(8, 145, 178, 0.2);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-header h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.modal-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15,23,42,0.08);
  padding: 12px;
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: var(--accent-cyan);
  outline: none;
}

/* =========================================
  STANDALONE PAGES LAYOUT (NON-HORIZONTAL)
========================================= */
.standalone-body {
  overflow-y: auto;
  overflow-x: hidden;
}

.standalone-content {
  padding-top: 130px;
  padding-bottom: 80px;
  min-height: calc(100vh - 200px);
}

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

.text-content-block {
  max-width: 800px;
  margin: 0 auto;
}

.text-content-block h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
}

.text-content-block h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.text-content-block h3 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 12px;
}

.text-content-block p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.text-content-block ul, .text-content-block ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

.text-content-block li {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* =========================================
  RESPONSIVE SETUP (MOBILE VERTICAL STACK)
========================================= */
@media (max-width: 1024px) {
  .hamburger-menu {
    display: flex;
  }
  
  .nav-links {
    display: none;
  }
  
  .navbar .btn {
    display: none;
  }
  
  .horizontal-container {
    width: 100vw;
    height: auto;
    flex-direction: column;
    overflow-y: visible;
  }
  
  .section {
    width: 100vw;
    height: auto;
    min-height: 100vh;
    padding: 110px 20px 40px;
  }

  .grid-split, .grid-hero, .corporate-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-left-3d, .hero-right-3d {
    height: 250px;
  }
  
  .hero-title {
    font-size: 34px;
  }
  
  .hero-subtext {
    font-size: 15px;
  }
  
  .roi-cards-container {
    flex-direction: column;
  }
  
  .problem-visual-wrapper {
    height: 300px;
  }
  
  .solution-visual-showcase {
    height: 300px;
  }
  
  .orb-orb-item {
    padding: 6px 12px;
  }
  
  .orb-tl { top: -5%; left: 0; }
  .orb-tr { top: -5%; right: 0; }
  .orb-bl { bottom: -10%; left: 0; }
  .orb-br { bottom: -10%; right: 0; }

  .split-comparison-3d {
    flex-direction: column;
  }
  
  .comparison-pane {
    transform: none !important;
    width: 100%;
    height: auto;
    padding: 20px;
  }
  
  .vs-divider-3d {
    transform: rotate(90deg);
  }
  
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-integrations-analytics {
    height: auto;
  }
  
  .integrations-orbit-container {
    height: 480px;
    margin-bottom: 20px;
  }
  
  .orbit-card {
    width: 120px;
    height: 80px;
    padding: 8px;
  }
  
  .orbit-card p {
    display: none;
  }
  
  .widget-demo-mockup {
    height: auto;
  }
  
  .widget-demo-layout {
    grid-template-columns: 1fr;
  }
  
  .embedded-help-widget {
    border-left: none;
    border-top: 1px solid rgba(15,23,42,0.05);
    height: 220px;
  }
  
  .security-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .security-vault-wrapper {
    height: 250px;
  }
  
  .pricing-cards-container {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.pro-card {
    transform: none;
  }
  
  .founders-container {
    grid-template-columns: 1fr;
  }
  
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .founder-socials {
    justify-content: center;
  }
  
  .about-visual-headquarters {
    height: 180px;
  }
  
  .testimonial-card {
    width: calc(100vw - 40px);
    padding: 20px;
  }
  
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
  
  .logo-wall-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .custom-cursor, .custom-cursor-dot {
    display: none;
  }
}
