/*
Theme Name: Zequto Theme
Theme URI: https://zequto.com
Author: Antigravity AI
Author URI: https://zequto.com
Description: Flawless premium dark tech theme for Zequto platform.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zequto
*/

/* ==========================================================================
   ZEQUTO SUPERCHARGED PREMIUM LIGHT-MODE DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette - Ultra-premium Dark Tech Theme */
  --bg-dark: #070a13;
  /* Obsidian black with tech blue tint */
  --bg-slate: #0f172a;
  /* Slate dark for cards */
  --bg-slate-light: #151f32;
  /* Highlighted slate card blocks */

  --primary: #6366f1;
  /* Indigo */
  --primary-glow: rgba(99, 102, 241, 0.12);
  --secondary: #06b6d4;
  /* Cyan/Teal */
  --secondary-glow: rgba(6, 182, 212, 0.12);

  --accent-purple: #8b5cf6;
  /* Violet */
  --accent-purple-glow: rgba(139, 92, 246, 0.12);
  --accent-emerald: #10b981;
  /* Success green */
  --accent-emerald-glow: rgba(16, 185, 129, 0.12);
  --accent-red: #f43f5e;
  /* Crimson Rose */
  --accent-red-glow: rgba(244, 63, 94, 0.12);
  --accent-yellow: #f59e0b;
  /* Warm amber */

  --text-main: #f8fafc;
  /* High contrast off-white */
  --text-muted: #a3b8cc;
  /* Slate slate gray */
  --text-dark: #070a13;
  /* Contrast black for buttons */

  /* Glassmorphic border lines */
  --glass-bg: rgba(10, 15, 30, 0.4);
  --glass-bg-hover: rgba(10, 15, 30, 0.55);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-hover: rgba(99, 102, 241, 0.35);
  --glow-color: rgba(99, 102, 241, 0.08);

  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Frosted glass blur effect for all dashboard and platform card elements */
.capability-card,
.stat-item,
.testimonial-card,
.pricing-card,
.integration-card,
.mockup-container,
.why-choose-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color-scheme: dark;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Tech Blueprint Grid mesh background overlay */
.grid-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
  z-index: 0;
  pointer-events: none;
  animation: gridFlow 25s linear infinite;
}

@keyframes gridFlow {
  0% {
    background-position: center 0px;
  }

  100% {
    background-position: center 60px;
  }
}

/* Glowing Ambient Backdrops */
.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  mix-blend-mode: multiply;
  animation: float-slow 15s ease-in-out infinite alternate;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 80%);
  top: -10%;
  right: -5%;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 80%);
  top: 25%;
  left: -10%;
  animation-delay: -3s;
}

.blob-3 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 80%);
  bottom: 10%;
  right: -10%;
  animation-delay: -6s;
}

/* Scroll Progress indicator */
.top-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-purple));
  width: 0%;
  z-index: 1001;
  transition: width 0.1s ease;
}

/* Header & Nav Styling */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 9, 19, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.2rem 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.9rem 0;
  background: rgba(11, 15, 25, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px !important;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
  margin-right: 0;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.05) rotate(5deg);
}

.logo-text {
  display: none !important;
}

.logo-dot {
  display: inline-block;
  color: var(--secondary);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-signin {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Menu Toggle Button (Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  gap: 0.5rem;
}

.btn-primary {
  background: #00ffd0;
  color: var(--bg-dark);
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 255, 208, 0.2);
}

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

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

.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(0, 255, 208, 0.4);
  transform: translateY(-2px);
  color: var(--bg-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Trust Pill Badge */
.trust-badge {
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  border: 1px solid rgba(79, 70, 229, 0.15);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
}

.trust-badge span {
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
  animation: pulse-glow 1.5s infinite;
}

/* Typography Helpers */
.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--text-main) 60%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION: Hero Section & Animated Simulator
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 7.5rem 0 3rem 0;
  overflow: hidden;
  z-index: 1;
  background: radial-gradient(circle at 85% 25%, rgba(124, 58, 237, 0.16) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 70%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  display: block;
}

.hero-title .highlight-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #00ffd0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-desc {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.hero-features-list {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-display);
}

.feature-bullet {
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--secondary);
}

.trusted-by {
  width: 100%;
}

.trusted-by-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 1rem;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.trusted-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: rgba(241, 245, 249, 0.45);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.trusted-logo:hover {
  color: var(--primary);
}

/* High Fidelity Live Test Simulator (IDE panel) */
.hero-visualization {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.simulator-frame {
  width: 100%;
  max-width: 540px;
  background: #090f1d;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12), 0 0 100px rgba(79, 70, 229, 0.06);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.simulator-frame:hover {
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18), 0 0 120px rgba(79, 70, 229, 0.15);
}

.sim-header {
  background: #0f172a;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-dots {
  display: flex;
  gap: 6px;
}

.sim-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.sim-dot-red {
  background-color: #ef4444;
}

.sim-dot-yellow {
  background-color: #f59e0b;
}

.sim-dot-green {
  background-color: #10b981;
}

.sim-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sim-run-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sim-run-indicator.running {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

/* Builder Theme Simulator styles */
.simulator-frame.builder-theme {
  background: rgba(10, 16, 31, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 100px rgba(99, 102, 241, 0.1);
  display: flex;
  flex-direction: column;
}

/* Breadcrumbs text at the window header */
.sim-breadcrumbs {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 1.5rem;
}

.sim-breadcrumbs .highlight-white {
  color: #cbd5e1;
  font-weight: 600;
}

.sim-body {
  padding: 0.9rem;
  background: #070c17;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Top navigations */
.sim-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-selectors {
  display: flex;
  gap: 0.6rem;
}

.sim-select-mock {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sim-select-mock .arrow-down {
  color: #64748b;
  font-size: 0.6rem;
}

.sim-record-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sim-record-badge .record-dot {
  width: 7px;
  height: 7px;
  background: #3b82f6;
  border-radius: 50%;
  animation: pulse-blue 1.5s infinite;
}

@keyframes pulse-blue {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

/* Address URL Bar */
.sim-address-bar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.45rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #94a3b8;
  font-family: monospace;
}

.sim-address-bar .globe-icon {
  color: #64748b;
  display: flex;
  align-items: center;
}

.sim-address-bar .sim-url-text {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Title bar */
.sim-test-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.sim-test-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.sim-tag-badges {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.sim-tag-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}

.sim-tag-badge .tag-close {
  color: #64748b;
  font-size: 0.8rem;
  cursor: default;
}

.sim-tag-badge-add {
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border: 1px dashed rgba(99, 102, 241, 0.3);
  border-radius: 4px;
  background: rgba(99, 102, 241, 0.02);
  cursor: default;
}

/* Steps count headers */
.sim-steps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.8rem;
}

.steps-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.steps-label {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
}

.steps-count {
  color: #64748b;
  font-size: 0.8rem;
}

.badge-type {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.ui-badge {
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
}

.api-badge {
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
}

.steps-expand-toggles {
  display: flex;
  gap: 0.8rem;
}

.steps-expand-toggles .toggle-btn {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  cursor: default;
}

.steps-expand-toggles .toggle-btn.active {
  color: var(--secondary);
  font-weight: 600;
}

/* Alert failure banner */
.sim-run-failed-banner {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: -0.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-run-failed-banner.active {
  opacity: 1;
  max-height: 50px;
  margin-top: 0;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fca5a5;
  font-size: 0.78rem;
}

.banner-cross-icon {
  background: #ef4444;
  color: #ffffff;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.banner-clear-btn {
  color: #94a3b8;
  font-size: 0.75rem;
  cursor: default;
  font-weight: 500;
}

/* Step list container */
.sim-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 2px;
}

.sim-steps-list::-webkit-scrollbar {
  width: 4px;
}

.sim-steps-list::-webkit-scrollbar-track {
  background: transparent;
}

.sim-steps-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* Step item card */
.sim-step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.45rem 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.sim-step-card.active-step {
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.02);
}

.sim-step-card.failed-step {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.02);
}

.step-card-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.step-num-box {
  width: 32px;
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.step-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  font-family: monospace;
}

.step-icon {
  font-size: 0.65rem;
}

.cursor-icon {
  color: #3b82f6;
  transform: rotate(-45deg);
  display: inline-block;
  font-weight: 800;
}

.api-num-box {
  background: rgba(16, 185, 129, 0.08);
}

.api-icon {
  font-size: 0.6rem;
  font-weight: 800;
  color: #34d399;
}

.step-dropdown {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.select-flow {
  color: #cbd5e1;
}

.select-action {
  color: #fb7185;
}

.select-action.select-api {
  color: #60a5fa;
}

.step-connector {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.02em;
}

.select-element {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.15);
}

.select-element.highlight-field {
  color: #fb7185;
  background: rgba(244, 63, 94, 0.06);
  border-color: rgba(244, 63, 94, 0.15);
}

.step-input-mock {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.72rem;
  padding: 0.15rem 0.4rem;
  color: #e2e8f0;
  font-family: monospace;
}

.truncate-url {
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flex-grow-url {
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-match {
  color: #a78bfa;
}

/* Warning alert underneath failed step */
.sim-step-card-wrapper {
  display: flex;
  flex-direction: column;
}

.step-warning-message {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-top: none;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  margin-top: -1px;
  padding: 0.5rem 0.8rem;
  color: #fca5a5;
  font-size: 0.72rem;
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-step-card-wrapper.active-warning .step-warning-message {
  opacity: 1;
  max-height: 50px;
}

.sim-step-card-wrapper.active-warning .sim-step-card {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Step status checks (spinning circle, checkmark, cross) */
.step-status-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.step-status-check.loading {
  border-color: #3b82f6;
  border-top-color: transparent;
  animation: spin-status 0.8s linear infinite;
}

.step-status-check.pass {
  background: #10b981;
  border-color: #10b981;
}

.step-status-check.pass::after {
  content: "";
  display: block;
  width: 4px;
  height: 7px;
  border: solid #ffffff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.step-status-check.fail {
  background: #ef4444;
  border-color: #ef4444;
}

.step-status-check.fail::after {
  content: "\d7";
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  margin-top: -1px;
}

@keyframes spin-status {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* AI Copilot Input Prompt */
.sim-ai-copilot-bar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.4rem 0.5rem 0.4rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.sim-ai-copilot-bar .stars-icon {
  color: var(--secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.sim-ai-copilot-bar .copilot-input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #94a3b8;
  flex-grow: 1;
}

.btn-ai-copilot {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.stars-svg {
  flex-shrink: 0;
}

.sim-footer-bar {
  padding: 0.8rem 1.2rem;
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-trigger-btn {
  background: var(--primary);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  padding: 0.4rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sim-trigger-btn:hover {
  background: #3730a3;
  box-shadow: 0 0 15px rgba(79, 70, 229, 0.3);
}

.sim-test-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
}

.sim-stat-box {
  color: #94a3b8;
}

.sim-stat-box span {
  font-weight: 700;
}

.sim-stat-box span.pass {
  color: #34d399;
}

.sim-stat-box span.fail {
  color: #f43f5e;
}

/* ==========================================================================
   SECTION: Why Choose Zequto Grid (3 Columns with Gradient Border Glows)
   ========================================================================== */
.why-choose-section {
  padding: 4.5rem 0 3.5rem 0;
  position: relative;
  z-index: 1;
  background: #ffffff !important;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.why-choose-section .hex-portal {
  opacity: 0.85 !important;
}

@keyframes pulseGreenHexLight {
  0% {
    opacity: 0.35;
    filter: drop-shadow(0 0 4px rgba(8, 145, 178, 0.15));
  }

  100% {
    opacity: 0.65;
    filter: drop-shadow(0 0 12px rgba(8, 145, 178, 0.45));
  }
}

.why-choose-section .hex-portal-green .hex-group polygon,
.why-choose-section .hex-portal-green .hex-group path {
  stroke: #0891b2 !important;
  stroke-width: 2.2px !important;
  animation: pulseGreenHexLight 6s infinite alternate ease-in-out, hexFlow 18s linear infinite !important;
}

.why-choose-section .why-choose-accent-tag {
  color: #4f46e5 !important;
}

.why-choose-section .section-title {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #0f172a !important;
  color: #0f172a !important;
}

.why-choose-section .feature-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.why-choose-section .feature-card:hover {
  background: #ffffff !important;
  border-color: rgba(99, 102, 241, 0.3) !important;
  box-shadow: 0 20px 45px rgba(99, 102, 241, 0.08), 0 0 30px rgba(99, 102, 241, 0.04) !important;
  transform: translateY(-6px);
}

.why-choose-section .feature-card-title {
  color: #0f172a !important;
}

.why-choose-section .feature-card-desc {
  color: #475569 !important;
}

/* Light style overrides for How It Works Pipeline section */
.pipeline-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  background: #ffffff !important;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pipeline-section .hex-portal {
  opacity: 0.85 !important;
}

.pipeline-section .hex-portal-green .hex-group polygon,
.pipeline-section .hex-portal-green .hex-group path {
  stroke: #0891b2 !important;
  stroke-width: 2.2px !important;
  animation: pulseGreenHexLight 6s infinite alternate ease-in-out, hexFlow 18s linear infinite !important;
}

.pipeline-section .section-title {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #0f172a !important;
  color: #0f172a !important;
}

.pipeline-section .section-subtitle {
  color: #475569 !important;
}

.pipeline-section .pipeline-step {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.pipeline-section .pipeline-badge {
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s ease !important;
}

/* Explicit colors for the 5 pipeline badges */
.pipeline-section .pipeline-step:nth-child(1) .pipeline-badge {
  border-color: #6366f1 !important;
  color: #6366f1 !important;
}

.pipeline-section .pipeline-step:nth-child(2) .pipeline-badge {
  border-color: #06b6d4 !important;
  color: #06b6d4 !important;
}

.pipeline-section .pipeline-step:nth-child(3) .pipeline-badge {
  border-color: #a855f7 !important;
  color: #a855f7 !important;
}

.pipeline-section .pipeline-step:nth-child(4) .pipeline-badge {
  border-color: #3b82f6 !important;
  color: #3b82f6 !important;
}

.pipeline-section .pipeline-step:nth-child(5) .pipeline-badge {
  border-color: #10b981 !important;
  color: #10b981 !important;
}

/* Sequential Highlight animation classes */
.pipeline-section .pipeline-step.active-pipeline-step {
  transform: translateY(-8px) !important;
}

.pipeline-section .pipeline-step.active-pipeline-step .pipeline-badge {
  transform: scale(1.2) !important;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15) !important;
}

.pipeline-section .pipeline-step:nth-child(1).active-pipeline-step .pipeline-badge {
  background: #6366f1 !important;
  color: #ffffff !important;
}

.pipeline-section .pipeline-step:nth-child(2).active-pipeline-step .pipeline-badge {
  background: #06b6d4 !important;
  color: #ffffff !important;
}

.pipeline-section .pipeline-step:nth-child(3).active-pipeline-step .pipeline-badge {
  background: #a855f7 !important;
  color: #ffffff !important;
}

.pipeline-section .pipeline-step:nth-child(4).active-pipeline-step .pipeline-badge {
  background: #3b82f6 !important;
  color: #ffffff !important;
}

.pipeline-section .pipeline-step:nth-child(5).active-pipeline-step .pipeline-badge {
  background: #10b981 !important;
  color: #ffffff !important;
}

.pipeline-section .pipeline-title {
  color: #0f172a !important;
}

.pipeline-section .pipeline-desc {
  color: #475569 !important;
}


/* Light style overrides for Testimonials section */
.testimonials-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.testimonials-section .section-title {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #0f172a !important;
  color: #0f172a !important;
}

.testimonials-section .section-subtitle {
  color: #475569 !important;
}

.testimonials-section .testimonial-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.testimonials-section .testimonial-card:hover {
  background: #ffffff !important;
  border-color: rgba(99, 102, 241, 0.3) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06) !important;
  transform: translateY(-4px);
}

.testimonials-section .testimonial-quote {
  color: #334155 !important;
}

.testimonials-section .user-name {
  color: #0f172a !important;
}

.testimonials-section .user-role {
  color: #64748b !important;
}

.testimonials-section .testimonial-user {
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.testimonials-section .t-nav-btn {
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background: rgba(99, 102, 241, 0.05) !important;
  color: #0f172a !important;
}

.testimonials-section .t-nav-btn:hover {
  background: var(--primary) !important;
  color: #ffffff !important;

}

.testimonials-section .testimonials-carousel-wrap::before {
  background: linear-gradient(to right, #ffffff 0%, transparent 100%) !important;
}

.testimonials-section .testimonials-carousel-wrap::after {
  background: linear-gradient(to left, #ffffff 0%, transparent 100%) !important;
}

/* Why Choose Us Header Layout */
.why-choose-header-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.why-choose-accent-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  font-weight: 800;
  display: block;
  margin-bottom: 0.8rem;
}

.section-title.left-aligned {
  text-align: left;
  margin-bottom: 0;
}

.section-subtitle.left-aligned {
  text-align: left;
}

.why-choose-right-col {
  border-left: 2px solid var(--primary);
  padding-left: 2.5rem;
}

@media (max-width: 991px) {
  .why-choose-header-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }

  .why-choose-right-col {
    border-left: none;
    border-top: 2px solid var(--primary);
    padding-left: 0;
    padding-top: 1.5rem;
  }
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Mouse spotlight container alignment */
.spotlight-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(350px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(79, 70, 229, 0.09), transparent 80%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.spotlight-card:hover::after {
  opacity: 1;
}

.spotlight-card * {
  position: relative;
  z-index: 2;
}

.feature-card:hover {
  background: var(--glass-bg-hover);
  /* Interactive multi-color glowing border mask */
  border-color: transparent;
  background: linear-gradient(var(--bg-slate), var(--bg-slate)) padding-box,
    linear-gradient(135deg, var(--primary), var(--secondary), var(--accent-purple)) border-box;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.06), 0 0 30px rgba(79, 70, 229, 0.04);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  border: 1px solid rgba(79, 70, 229, 0.12);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
  transform: scale(1.05);
}

.feature-card:nth-child(2) .feature-icon-wrapper {
  background: rgba(8, 145, 178, 0.08);
  color: var(--secondary);
  border-color: rgba(8, 145, 178, 0.12);
}

.feature-card:nth-child(2):hover .feature-icon-wrapper {
  background: var(--secondary);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(8, 145, 178, 0.4);
}

.feature-card:nth-child(3) .feature-icon-wrapper {
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent-purple);
  border-color: rgba(124, 58, 237, 0.12);
}

.feature-card:nth-child(3):hover .feature-icon-wrapper {
  background: var(--accent-purple);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.feature-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION: Interactive Split Demos
   ========================================================================== */
.split-demo-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 80% 60%, rgba(139, 92, 246, 0.12) 0%, transparent 65%);
  overflow: hidden;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
}

.split-grid:last-child {
  margin-bottom: 0;
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse .split-content,
.split-grid.reverse .split-visual {
  direction: ltr;
}

.split-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.split-tag {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.split-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.split-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

/* Tab Control styling */
.demo-tabs-control {
  display: flex;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--glass-border);
  padding: 4px;
  border-radius: 100px;
  width: max-content;
  margin-bottom: 2rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.demo-tab-btn {
  background: none;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-tab-btn:hover {
  color: var(--text-main);
}

.demo-tab-btn.active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.split-list-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.split-list-item svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* Scenario Builder UI Panel Mockup */
.split-visual {
  position: relative;
}

.mockup-container {
  width: 100%;
  background: var(--bg-slate);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.panel-header {
  padding: 0.75rem 1.2rem;
  background: var(--bg-slate-light);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.panel-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
}

.builder-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--bg-slate);
}

.builder-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.step-label {
  font-weight: 700;
  color: var(--primary);
}

.step-val {
  color: var(--text-main);
}

/* Interactive Locator Drift (Self Healing Visual) */
.healing-body {
  padding: 1.5rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-slate);
}

.healing-display {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.healing-indicator-box {
  width: 100%;
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.healing-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

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

.healing-interactive-card {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1rem;
}

.healing-card-line {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.healing-card-line:last-child {
  margin-bottom: 0;
}

.healing-status-tag {
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.healing-status-tag.healed {
  background: rgba(5, 150, 105, 0.12);
  color: var(--accent-emerald);
}

.healing-status-tag.broken {
  background: rgba(219, 39, 119, 0.12);
  color: var(--accent-red);
}

/* Slider Controls */
.slider-controls {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.healing-switch-btn {
  background: var(--bg-slate-light);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.healing-switch-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.2);
}

/* ==========================================================================
   SECTION: Tool Integrations Grid
   ========================================================================== */
.integrations-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.integrations-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.integration-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.integration-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  position: relative;
  gap: 0.4rem;
}

.integration-item svg {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  transition: all 0.4s ease;
}

.integration-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  transition: all 0.4s ease;
}

.integration-item:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* Brand specific glow overrides */
.integration-item.jira:hover {
  border-color: #0052cc;
  box-shadow: 0 0 25px rgba(0, 82, 204, 0.15);
}

.integration-item.jira:hover svg,
.integration-item.jira:hover span {
  color: #0052cc;
}

.integration-item.azure:hover {
  border-color: #0078d4;
  box-shadow: 0 0 25px rgba(0, 120, 212, 0.15);
}

.integration-item.azure:hover svg,
.integration-item.azure:hover span {
  color: #0078d4;
}

.integration-item.github:hover {
  border-color: #0f172a;
  box-shadow: 0 0 25px rgba(15, 23, 42, 0.1);
}

.integration-item.github:hover svg,
.integration-item.github:hover span {
  color: #0f172a;
}

.integration-item.gitlab:hover {
  border-color: #fc6d26;
  box-shadow: 0 0 25px rgba(252, 109, 38, 0.15);
}

.integration-item.gitlab:hover svg,
.integration-item.gitlab:hover span {
  color: #fc6d26;
}

.integration-item.slack:hover {
  border-color: #4a154b;
  box-shadow: 0 0 25px rgba(74, 21, 75, 0.1);
}

.integration-item.slack:hover svg,
.integration-item.slack:hover span {
  color: #36c5f0;
}

.integration-item.okta:hover {
  border-color: #007dc1;
  box-shadow: 0 0 25px rgba(0, 125, 193, 0.15);
}

.integration-item.okta:hover svg,
.integration-item.okta:hover span {
  color: #007dc1;
}

.integration-item.teams:hover {
  border-color: #6264a7;
  box-shadow: 0 0 25px rgba(98, 100, 167, 0.15);
}

.integration-item.teams:hover svg,
.integration-item.teams:hover span {
  color: #6264a7;
}

.integration-item.postman:hover {
  border-color: #ff6c37;
  box-shadow: 0 0 25px rgba(255, 108, 55, 0.15);
}

.integration-item.postman:hover svg,
.integration-item.postman:hover span {
  color: #ff6c37;
}

.integration-item.jenkins:hover {
  border-color: #d24939;
  box-shadow: 0 0 25px rgba(210, 73, 57, 0.15);
}

.integration-item.jenkins:hover svg,
.integration-item.jenkins:hover span {
  color: #d24939;
}


/* ==========================================================================
   SECTION: How It Works (Three Steps Pipeline)
   ========================================================================== */
.pipeline-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 30% 40%, rgba(6, 182, 212, 0.12) 0%, transparent 60%);
  overflow: hidden;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

/* Connecting line for steps */
.pipeline-grid::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-purple));
  z-index: 0;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pipeline-badge {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pipeline-step:nth-child(2) .pipeline-badge {
  border-color: var(--secondary);
  color: var(--secondary);
}

.pipeline-step:nth-child(3) .pipeline-badge {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
}

.pipeline-step:hover .pipeline-badge {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
  background: var(--primary);
  color: #ffffff;
}

.pipeline-step:nth-child(2):hover .pipeline-badge {
  box-shadow: 0 0 20px rgba(8, 145, 178, 0.3);
  background: var(--secondary);
  color: #ffffff;
}

.pipeline-step:nth-child(3):hover .pipeline-badge {
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
  background: var(--accent-purple);
  color: #ffffff;
}

.pipeline-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.pipeline-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION: Stats & Testimonials
   ========================================================================== */
.stats-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

.stat-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text-main) 40%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  display: block;
}

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

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

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

/* ==========================================================================
   SECTION: Scalable Pricing Layout
   ========================================================================== */
.pricing-section {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 80% 45%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  overflow: hidden;
}

/* Pricing Toggle Switch Styles */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.toggle-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.3s ease;
  user-select: none;
}

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

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-slate-light);
  border: 1px solid var(--glass-border);
  transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

input:checked+.toggle-slider { 
  background-color: var(--primary);
  border-color: var(--primary);
}

input:checked+.toggle-slider:before {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  align-items: stretch;
  margin-top: 2.5rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-card.popular {
  border-color: rgba(79, 70, 229, 0.3);
  background: rgba(15, 23, 42, 0.4);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
  transform: translateY(-4px);
}

.pricing-card.popular::before {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.popular-tag {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  height: auto;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: baseline;
  transition: all 0.3s ease;
}

.pricing-period {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 0.4rem;
  transition: all 0.3s ease;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-main);
}

.pricing-feature-item.disabled {
  color: rgba(255, 255, 255, 0.3);
}

.pricing-feature-item svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.pricing-feature-item.disabled svg {
  color: rgba(255, 255, 255, 0.15);
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(79, 70, 229, 0.15);
}

/* ==========================================================================
   SECTION: Bottom CTA & Footer
   ========================================================================== */
.cta-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-box {
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.09), transparent 80%),
    linear-gradient(135deg, rgba(79, 70, 229, 0.04) 0%, rgba(8, 145, 178, 0.02) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

.cta-box:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3) !important;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(99, 102, 241, 0.12);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

.cta-box:hover::before {
  opacity: 0.45;
}

.cta-box-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.07;
  top: -50%;
  left: 35%;
  pointer-events: none;
  animation: ctaGlowFloat 10s ease-in-out infinite alternate;
}

@keyframes ctaGlowFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 15px) scale(1.08);
  }
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-main) 50%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.2rem auto;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

/* Footer Section */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5rem 0 3rem 0;
  background: #030712 !important;
  position: relative;
  z-index: 1;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 4rem;
  margin-bottom: 2.5rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand-col .logo-text {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-brand-col .logo-img {
  height: 52px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  margin-top: 1.2rem;
  color: #8a99ad !important;
  max-width: 360px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col-links a {
  color: #8a99ad !important;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-social-icon {
  vertical-align: middle;
  margin-right: 8px;
  transition: stroke 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.footer-col-links a:hover .footer-social-icon {
  stroke: var(--secondary);
  transform: translateY(-2px);
}

.footer-col-links a:hover {
  color: #ffffff !important;
}

.contact-email-link {
  color: #00ffd0 !important;
  font-weight: 600;
}

.contact-email-link:hover {
  color: #22d3ee !important;
  text-decoration: underline !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #8a99ad;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 1.5rem !important;
  margin-top: 2.5rem !important;
}

.footer-bottom-left {
  flex: 1.5;
  text-align: left;
}

.footer-bottom-right {
  flex: 1;
  text-align: right;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-policy-link {
  color: #8a99ad !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policy-link:hover {
  color: #ffffff !important;
}

/* Animations */
@keyframes float-slow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -20px) scale(1.05);
  }

  100% {
    transform: translate(-10px, 10px) scale(0.95);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}


/* ==========================================================================
   NEW SECTIONS: Why Choose, Capabilities, Industries, FAQs & Lists
   ========================================================================== */

/* Why Choose Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Capabilities Grid (4 Columns) */
.capabilities-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  overflow: hidden;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

a.capability-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.capability-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.capability-card:hover {
  background: var(--glass-bg-hover);
  /* Interactive multi-color glowing border mask */
  border-color: transparent;
  background: linear-gradient(var(--bg-slate), var(--bg-slate)) padding-box,
    linear-gradient(135deg, var(--primary), var(--secondary), var(--accent-purple)) border-box;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.06), 0 0 30px rgba(79, 70, 229, 0.05);
}

.capability-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  border: 1px solid rgba(79, 70, 229, 0.12);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.capability-card:hover .capability-icon {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 12px var(--primary);
}

.capability-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.capability-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pipeline Five Steps Connector */
.pipeline-grid.five-steps {
  grid-template-columns: repeat(5, 1fr);
}

.pipeline-grid.five-steps::after {
  left: 8%;
  right: 8%;
}

/* Industries Section & Grid (4 Columns) */
.industries-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.industry-card:hover {
  background: var(--glass-bg-hover);
  /* Interactive multi-color glowing border mask */
  border-color: transparent;
  background: linear-gradient(var(--bg-slate), var(--bg-slate)) padding-box,
    linear-gradient(135deg, var(--secondary), var(--primary), var(--accent-purple)) border-box;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.06), 0 0 30px rgba(8, 145, 178, 0.05);
}

.industry-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 145, 178, 0.08);
  color: var(--secondary);
  border: 1px solid rgba(8, 145, 178, 0.12);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon-wrapper {
  background: var(--secondary);
  color: #ffffff;
  box-shadow: 0 0 12px var(--secondary);
}

.industry-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.industry-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   Platform Demo Video Section
   ============================================================ */
.platform-video-section {
  padding: 2.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.platform-video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.platform-video-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.platform-video-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.2rem;
}

.platform-video-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.platform-video-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Wrapper for video + floating badges */
.platform-video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
}

/* Browser chrome frame */
.video-browser-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d1526;
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.15),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(99, 102, 241, 0.08);
  animation: videoFrameFloat 6s ease-in-out infinite;
}

@keyframes videoFrameFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}

.video-browser-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.2rem;
  background: #111827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.video-browser-dots {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}

.vb-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.vb-dot.red {
  background: #ff5f57;
}

.vb-dot.yellow {
  background: #febc2e;
}

.vb-dot.green {
  background: #28c840;
}

.video-browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  max-width: 320px;
  margin: 0 auto;
}

.video-browser-controls {
  flex-shrink: 0;
}

.vb-live-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  letter-spacing: 0.06em;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* Video frame inner */
.video-inner-frame {
  position: relative;
  width: 100%;
  line-height: 0;
}

.platform-demo-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 560px;
}

.video-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #070a13 0%, transparent 100%);
  pointer-events: none;
}

/* Floating stat badges */
.video-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  animation: badgeFloat 4s ease-in-out infinite;
}

.video-float-badge svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.badge-top-left {
  top: -18px;
  left: -20px;
  animation-delay: 0s;
}

.badge-top-right {
  top: -18px;
  right: -20px;
  animation-delay: 1.3s;
}

.badge-bottom-left {
  bottom: 30px;
  left: -20px;
  animation-delay: 2.6s;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {

  .badge-top-left,
  .badge-top-right,
  .badge-bottom-left {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: inline-flex;
    margin: 0.4rem;
  }

  .platform-video-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .video-browser-frame {
    order: 1;
    margin-bottom: 1rem;
  }

  .video-float-badge {
    font-size: 0.72rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Trusted By Enterprise Logos */

.trusted-by-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.005);
  position: relative;
  z-index: 1;
}

.trusted-by-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #94a3b8;
  font-weight: 800;
  margin-bottom: 2.2rem;
  text-align: center;
  opacity: 0.95;
}

.logo-marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

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

.logo-marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, #05080f 0%, transparent 100%);
}

.logo-marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, #05080f 0%, transparent 100%);
}

.logo-marquee-wrapper {
  display: inline-flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.logo-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 5.5rem;
  padding-right: 5.5rem;
}

.marquee-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #e2e8f0;
  opacity: 0.75;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  user-select: none;
}

.marquee-logo:hover {
  opacity: 1;
  color: #ffffff;
}

.logo-icon {
  font-size: 0.9rem;
  color: var(--primary);
  opacity: 1;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Why Teams Love Zequto checklist section */
.why-teams-love-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.check-bullet-list .split-list-item {
  font-weight: 600;
}

.check-bullet-list .split-list-item svg {
  color: var(--primary);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.faq-accordion-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.3rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
}

.faq-question span {
  padding-right: 1.5rem;
}

.faq-icon {
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  flex-shrink: 0;
}

.faq-question:hover .faq-icon {
  color: var(--primary);
}

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

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* FAQ Active States */
.faq-item.active {
  border-color: rgba(79, 70, 229, 0.2);
  background: var(--glass-bg-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.8rem 1.4rem 1.8rem;
}

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

/* ==========================================================================
   MEDIA QUERIES - MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

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

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .trusted-logos {
    justify-content: center;
  }

  .hero-visualization {
    margin-top: 1.5rem;
  }

  .cards-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .capabilities-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .split-grid.reverse {
    direction: ltr;
  }

  .split-content {
    align-items: center;
    text-align: center;
  }

  .integrations-grid-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .pipeline-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .pipeline-grid::after {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    border-bottom: 1px solid var(--glass-border);
    display: none;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-right {
    display: none;
  }

  .nav-links.active+.nav-right {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 320px;
    left: 0;
    right: 0;
    padding: 0 2rem 3rem 2rem;
    background-color: var(--bg-dark);
    z-index: 999;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .capabilities-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 3.5rem 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-tagline {
    font-size: 1.4rem !important;
  }

  .footer-brand-col .logo-text {
    font-size: 1.8rem !important;
  }

  .footer-brand-col .logo-img {
    height: 36px !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    text-align: center;
    justify-content: center;
    gap: 1.5rem;
  }

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

/* ==========================================================================
   ZEQUTO VISUAL & INTERACTIVE UPGRADE STYLES
   ========================================================================== */

/* Blueprint grid overlays & keyframes */
.grid-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
  transition: opacity 0.5s ease;
}

/* Cursor Glow Spotlight */
.custom-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(6, 182, 212, 0.04) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.6s ease;
}

body:hover .custom-cursor-glow {
  opacity: 1;
}

/* Hero tab buttons inside simulator-frame */
.sim-view-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 2px;
}

.sim-view-tab {
  background: none;
  border: none;
  color: #64748b;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.sim-view-tab:hover {
  color: #cbd5e1;
}

.sim-view-tab.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Live Viewport Simulator Styles */


/* DOM Self-Healing Simulator Visual Styles */
.healing-visual-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
  align-items: center;
}

.healing-node-col {
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.healing-node-col.broken {
  border-color: rgba(244, 63, 94, 0.3);
  background: rgba(244, 63, 94, 0.08);
}

.healing-node-col.healed-active {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.08);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.node-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.code-box-small {
  background: #0f172a;
  color: #cbd5e1;
  font-family: monospace;
  font-size: 0.75rem;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 0.6rem;
  overflow-x: auto;
}

.code-box-small .code-tag {
  color: #f43f5e;
}

.code-box-small .attr-name {
  color: #06b6d4;
}

.code-box-small .attr-val {
  color: #34d399;
}

.status-msg {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.healing-scan-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.scanning-laser-line {
  position: absolute;
  top: 0;
  width: 2px;
  height: 0%;
  background: linear-gradient(to bottom, transparent, var(--primary), var(--secondary), transparent);
  opacity: 0;
  z-index: 5;
}

.scanning-laser-line.animating {
  animation: sweep-laser 1.2s ease-in-out infinite alternate;
}

.healing-status-tag-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 140px;
  pointer-events: none;
  z-index: 6;
}

.healing-weight-badge {
  font-size: 0.7rem;
  font-weight: 800;
  background: var(--bg-slate-light);
  border: 1px solid var(--glass-border);
  padding: 0.15rem 0.4rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}

/* Integrations section: Radial Hub & Inspector */
.integration-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.int-hub-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.int-hub-btn span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
}

.int-hub-btn:hover {
  background: var(--glass-bg-hover);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.25);
}

.int-hub-btn.active {
  background: var(--bg-slate);
  border-color: transparent;
  background: linear-gradient(var(--bg-slate), var(--bg-slate)) padding-box,
    linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.15);
}

.int-hub-btn .tech-icon {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.int-hub-btn.active .tech-icon,
.int-hub-btn:hover .tech-icon {
  color: var(--primary);
}

/* Integration Code Inspector Panel */
.integration-code-inspector {
  background: #090f1d;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 0 60px rgba(79, 70, 229, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  height: 100%;
  min-height: 380px;
}

.inspector-header {
  background: #0f172a;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inspector-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.02em;
}

.btn-copy-code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #94a3b8;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
}

.btn-copy-code:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-copy-code.success {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
}

.inspector-body {
  flex-grow: 1;
  background: #060a13;
  padding: 1.2rem;
  overflow: auto;
  font-family: monospace;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #cbd5e1;
}

/* Pricing seat slider custom design */
.pricing-slider-wrap {
  margin-top: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.slider-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.slider-header-info span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.slider-header-info strong {
  color: var(--primary);
  font-size: 1.15rem;
}

.discount-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  animation: pulse-light 2s infinite;
}

.range-slider-container {
  position: relative;
  width: 100%;
}

.pricing-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: #e2e8f0;
  outline: none;
  cursor: pointer;
}

.pricing-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.3);
  transition: transform 0.1s ease;
}

.pricing-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-steps-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 700;
}

.pricing-total-calculated {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.2rem;
  margin-bottom: 1.5rem;
}

.pricing-price-wrapper {
  margin-bottom: 0;
}

/* Footer: Interactive Form & Tooltips */
.footer-newsletter-wrap {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.newsletter-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.newsletter-form-container {
  display: flex;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  padding: 4px;
  border-radius: 8px;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.newsletter-input {
  border: none;
  background: transparent;
  flex-grow: 1;
  padding: 0.4rem 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-main);
  outline: none;
}

.newsletter-submit-btn {
  background: var(--primary);
  color: #ffffff;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}

.newsletter-submit-btn:hover {
  background: #3730a3;
}

.spinner-small {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: rotate-spinner 0.6s linear infinite;
  position: absolute;
}

.newsletter-success-msg {
  font-size: 0.75rem;
  font-weight: 700;
  color: #047857;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.6rem;
  animation: fade-in 0.3s ease;
}

/* System Uptime Pulsing Status Badge */
.status-indicator-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  cursor: pointer;
}

.status-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.status-pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid var(--accent-emerald);
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.status-text-value {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #047857;
}

.status-metrics-tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  width: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.status-metrics-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

.status-metrics-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border-width: 7px;
  border-style: solid;
  border-color: var(--glass-border) transparent transparent transparent;
  z-index: -1;
}

.status-indicator-wrapper:hover .status-metrics-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.tooltip-header {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-main);
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
}

.tooltip-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

.tooltip-row span.pass {
  color: #047857;
  font-weight: 700;
}

/* Floating Back-to-Top circular Progress dial */
.back-to-top-dial {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: var(--bg-slate);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.back-to-top-dial.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top-dial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
  border-color: rgba(79, 70, 229, 0.2);
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 3;
}

.progress-circle-bar {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 113.1;
  /* 2 * PI * r = 2 * 3.14159 * 18 = 113.1 */
  stroke-dashoffset: 113.1;
  transition: stroke-dashoffset 0.1s ease;
}

.arrow-up-indicator {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.back-to-top-dial:hover .arrow-up-indicator {
  color: var(--primary);
}

/* 5-step visual connectors styling */
.pipeline-grid.five-steps {
  position: relative;
}

.pipeline-grid.five-steps::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #e2e8f0, #e2e8f0 10px, transparent 10px, transparent 20px);
  z-index: 1;
}

.pipeline-step {
  position: relative;
  z-index: 2;
}

/* Observer Reveal Entrance Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.reveal-active {
  opacity: 1;
  transform: scale(1);
}

/* Keyframes definitions */
@keyframes rotate-spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sweep-laser {
  0% {
    height: 0%;
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    height: 100%;
    opacity: 0;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
    opacity: 1;
  }

  80%,
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes pulse-light {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.75;
  }
}

/* Extra media queries responsive adjustments */
@media (max-width: 991px) {
  .healing-visual-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .healing-scan-divider {
    height: 40px;
  }

  .scanning-laser-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), var(--secondary), transparent);
  }

  .scanning-laser-line.animating {
    animation: sweep-laser-horizontal 1.2s ease-in-out infinite alternate;
  }

  @keyframes sweep-laser-horizontal {
    0% {
      width: 0%;
      opacity: 0;
    }

    10% {
      opacity: 0.8;
    }

    90% {
      opacity: 0.8;
    }

    100% {
      width: 100%;
      opacity: 0;
    }
  }

  .integration-icons-grid {
    grid-template-columns: 1fr;
  }
}
}

/* Purple AI Badge in Tagline */
.badge-purple {
  background: #7c3adf;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-left: 0.2rem;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
  vertical-align: middle;
}

/* Glowing Neon Hexagonal Background Shapes */
.bg-hex-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  min-height: 1200px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hex-portal {
  position: absolute;
  width: 750px;
  height: 750px;
  pointer-events: none;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
  z-index: -1;
}

.hex-portal-purple {
  top: -150px;
  right: -100px;
}

.hex-portal-green {
  top: 450px;
  left: 10%;
}

.hex-portal-right {
  top: -100px;
  right: -250px;
  left: auto;
}

.hex-portal-left {
  top: -50px;
  left: -250px;
  right: auto;
}

.hex-portal-right-bottom {
  top: auto;
  bottom: -200px;
  right: -250px;
  left: auto;
}

.hex-portal-left-bottom {
  top: auto;
  bottom: -200px;
  left: -250px;
  right: auto;
}

@media (max-width: 768px) {
  .hex-portal {
    width: 400px;
    height: 400px;
  }

  .hex-portal-purple {
    top: -50px;
    right: -100px;
  }

  .hex-portal-green {
    top: 500px;
    left: -50px;
  }

  .hex-portal-right {
    top: -50px;
    right: -150px;
    left: auto;
  }

  .hex-portal-left {
    top: -30px;
    left: -150px;
    right: auto;
  }

  .hex-portal-right-bottom {
    top: auto;
    bottom: -100px;
    right: -150px;
    left: auto;
  }

  .hex-portal-left-bottom {
    top: auto;
    bottom: -100px;
    left: -150px;
    right: auto;
  }
}

.hex-svg {
  width: 100%;
  height: 100%;
}

.hex-group {
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hex-portal-purple .hex-group polygon,
.hex-portal-purple .hex-group path {
  stroke: var(--primary);
  opacity: 0.45;
  stroke-dasharray: 600 300;
  stroke-width: 1.8px;
  animation: pulsePurpleHex 6s infinite alternate ease-in-out, hexFlow 18s linear infinite;
}

.hex-portal-green .hex-group polygon,
.hex-portal-green .hex-group path {
  stroke: var(--secondary);
  opacity: 0.5;
  stroke-dasharray: 600 300;
  stroke-width: 1.8px;
  animation: pulseGreenHex 6s infinite alternate ease-in-out, hexFlow 18s linear infinite;
}

@keyframes hexFlow {
  0% {
    stroke-dashoffset: 900;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* Animations for pulsing glow */
@keyframes pulsePurpleHex {
  0% {
    opacity: 0.35;
    filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.25));
  }

  100% {
    opacity: 0.75;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.7));
  }
}

@keyframes pulseGreenHex {
  0% {
    opacity: 0.35;
    filter: drop-shadow(0 0 6px rgba(6, 182, 212, 0.25));
  }

  100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.75));
  }
}

/* Drift animations */
.hex-portal-purple .hex-group {
  transform-origin: 540px 480px;
  animation: driftClusterPurple 35s infinite ease-in-out;
}

.hex-portal-green .hex-group {
  transform-origin: 540px 480px;
  animation: driftClusterGreen 35s infinite ease-in-out;
}

@keyframes driftClusterPurple {

  0%,
  100% {
    transform: rotate(0deg) translate(0px, 0px) scale(1);
  }

  50% {
    transform: rotate(2deg) translate(15px, -10px) scale(1.02);
  }
}

@keyframes driftClusterGreen {

  0%,
  100% {
    transform: rotate(0deg) translate(0px, 0px) scale(1);
  }

  50% {
    transform: rotate(-3deg) translate(-20px, 15px) scale(0.98);
  }
}

/* Benefits Section Rich List */
.benefits-rich-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 100%;
  margin-top: 2rem;
}

.benefit-rich-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.benefit-icon {
  background: rgba(6, 182, 212, 0.08);
  color: var(--secondary);
  border: 1px solid rgba(6, 182, 212, 0.15);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
  transition: all 0.3s ease;
}

.benefit-rich-item:hover .benefit-icon {
  background: var(--secondary);
  color: var(--bg-dark);
  box-shadow: 0 0 15px var(--secondary);
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.benefit-item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.benefit-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Redesign stats-grid to fit left column as 2x2 */
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.stats-section .stat-item {
  padding: 1.6rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stats-section .stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Explicit high-visibility outlines for key items (Card 1: 5m, Card 4: 30+) */
.stats-section .stat-item:nth-child(1),
.stats-section .stat-item:nth-child(4) {
  border-color: rgba(99, 102, 241, 0.25) !important;
  background: rgba(99, 102, 241, 0.02) !important;
}

.stats-section .stat-item:nth-child(1):hover,
.stats-section .stat-item:nth-child(4):hover {
  border-color: #818cf8 !important;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.1) !important;
}

.stats-section .stat-num {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: #e2e8f0;
  display: inline-block;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

/* High visibility color for key metrics (Card 1: 5m, Card 4: 30+) */
.stats-section .stat-item:nth-child(1) .stat-num,
.stats-section .stat-item:nth-child(4) .stat-num {
  color: #00f0ff !important;
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.stats-section .stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-section .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION: Testimonials — Horizontal Scroll Carousel
   ========================================================================== */
.testimonials-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 65%);
  overflow: hidden;
}

/* Top row: title left + nav buttons right */
.testimonials-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.testimonial-nav-btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.t-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(99, 102, 241, 0.08);
  color: var(--text-main);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.t-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.35);
}

/* Carousel track wrapper with fade edges */
.testimonials-carousel-wrap {
  position: relative;
}

.testimonials-carousel-wrap::before,
.testimonials-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, #070a13 0%, transparent 100%);
}

.testimonials-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, #070a13 0%, transparent 100%);
}

/* The scrollable carousel */
.testimonials-carousel {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 1.2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

/* Each card in the carousel */
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.5rem;
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

/* Featured middle card */
.testimonial-card-featured {
  border-color: transparent;
  background:
    linear-gradient(var(--bg-slate-light), var(--bg-slate-light)) padding-box,
    linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) border-box;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--primary);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-quote {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.65;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.78rem;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.user-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.user-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.user-role {
  font-size: 0.73rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .testimonials-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .testimonial-card {
    flex: 0 0 260px;
  }
}


.testimonials-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonials-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(99, 102, 241, 0.05);
}

/* Featured middle card - special glowing border */
.testimonial-card-featured {
  border-color: transparent;
  background:
    linear-gradient(var(--bg-slate-light), var(--bg-slate-light)) padding-box,
    linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent-purple) 100%) border-box;
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.12), 0 0 60px rgba(6, 182, 212, 0.06);
}

.testimonial-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.18), 0 0 80px rgba(6, 182, 212, 0.1);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--primary);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--glass-border);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.85rem;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.user-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.user-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.user-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Aggregate Rating Card */
.testimonial-rating-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.testimonial-rating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
}

.rating-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-stars-row {
  display: flex;
  gap: 4px;
}

.rating-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.rating-platforms {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  width: 100%;
}

.rating-platform-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   SECTION: FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.faq-header-col {
  position: sticky;
  top: 110px;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

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

.faq-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Accordion items */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-item:first-child {
  border-top: 1px solid var(--glass-border);
}

.faq-item.open {
  background: rgba(99, 102, 241, 0.03);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0.95rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.3);
}

/* Smooth height animation for answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 350px;
  padding-bottom: 0.95rem;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .testimonials-row2 {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-rating-card {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }

  .rating-platforms {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

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

  .testimonials-row2 {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-header-col {
    position: static;
  }

  .faq-title {
    font-size: 2rem;
  }
}

/* Visual Integration Card (No-Code Connection Mockup) */
.integration-visual-card {
  background: rgba(10, 16, 31, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(99, 102, 241, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 410px;
}

.visual-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1rem;
}

.connector-title-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 70%;
}

.connector-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.connector-tagline {
  font-size: 0.78rem;
  color: #94a3b8;
}

.connection-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 30px;
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
}

.connection-status-badge .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse-badge-green 1.6s infinite ease-in-out;
}

@keyframes pulse-badge-green {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

/* Connector Diagram */
.connector-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  margin-bottom: 0.5rem;
}

.diagram-node {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: rgba(79, 70, 229, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  position: relative;
  transition: all 0.4s ease;
}

.diagram-node.zequto-node {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: #ffffff;
}

.diagram-node .node-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(10px);
  opacity: 0.15;
  z-index: 0;
  transition: all 0.4s ease;
}

.diagram-node .node-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zequto-node-logo {
  height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.diagram-line-container {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  margin: 0 0.8rem;
  overflow: hidden;
}

.diagram-line-flow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 35px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  animation: diagram-flow 2s infinite linear;
}

@keyframes diagram-flow {
  0% {
    left: -35px;
  }

  100% {
    left: 120px;
  }
}

/* Bullet Checklist styling */
.connector-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.connector-feature-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.feature-bullet-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-bullet-text {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.45;
}

.feature-bullet-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* ==========================================================================
   Unified Test Runner Card & Animations
   ========================================================================== */
.unified-runner-card {
  background: rgba(10, 16, 31, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(99, 102, 241, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 480px;
  margin: 0 auto;
  min-height: 520px;
}

.runner-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.8rem;
  margin-bottom: 0.5rem;
}

.runner-title-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.runner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: pulse-blue-runner 1.5s infinite ease-in-out;
}

@keyframes pulse-blue-runner {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.runner-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.runner-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.runner-badge.active {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.25);
}

.runner-badge.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

/* Step Cards */
.runner-step-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0.3;
  transform: scale(0.97);
}

.runner-step-card.active {
  opacity: 1;
  transform: scale(1);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.runner-step-card.completed {
  opacity: 0.95;
  transform: scale(1);
  border-color: rgba(16, 185, 129, 0.2) !important;
  background: rgba(16, 185, 129, 0.02) !important;
}

.step-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.layer-tag {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.ui-tag {
  background: rgba(99, 102, 241, 0.1);
  color: #818cf8;
}

.api-tag {
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
}

.db-tag {
  background: rgba(168, 85, 247, 0.1);
  color: #c084fc;
}

.step-time {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  transition: all 0.3s ease;
}

.runner-step-card.completed .step-time {
  color: #10b981;
}

.step-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.step-code {
  font-family: monospace;
  font-size: 0.75rem;
  color: #cbd5e1;
}

.step-code strong {
  color: #c084fc;
  /* Purple/magenta operators */
  transition: color 0.3s ease;
}

.runner-step-card.completed .step-code strong {
  color: #10b981;
  /* Changes to green when verified! */
}

.step-code .status-code {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.05rem 0.25rem;
  border-radius: 3px;
  font-size: 0.7rem;
  margin-left: 0.4rem;
}

/* Connectors */
.runner-connector {
  height: 25px;
  position: relative;
  margin-left: 2rem;
  width: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.connector-progress-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--secondary), #10b981);
  transition: height 0.6s linear;
}

.connector-bullet {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 10px var(--secondary);
  opacity: 0;
  transition: transform 0.6s linear, opacity 0.2s ease;
}

/* Light Theme Override for Self-Healing Section */
.split-demo-section.light-section {
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 5rem 0;
}

.split-demo-section.light-section .hex-portal {
  display: none !important;
}

.split-demo-section.light-section .split-title {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  background: none !important;
}

.split-demo-section.light-section .split-desc {
  color: #475569 !important;
}

.split-demo-section.light-section .split-list {
  color: #475569 !important;
}

.split-demo-section.light-section .split-list-item {
  color: #334155 !important;
}

.split-demo-section.light-section .split-list-item svg {
  color: #06b6d4 !important;
}

.split-demo-section.light-section .mockup-container {
  background: #f8fafc !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

.split-demo-section.light-section .panel-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.split-demo-section.light-section .panel-label {
  color: #0f172a !important;
}

.split-demo-section.light-section .code-box-small {
  background: #f1f5f9 !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
  color: #334155 !important;
}

.split-demo-section.light-section .code-tag {
  color: #6366f1 !important;
}

.split-demo-section.light-section .attr-name {
  color: #0ea5e9 !important;
}

.split-demo-section.light-section .attr-val {
  color: #0d9488 !important;
}

.split-demo-section.light-section .healing-display {
  background: #f8fafc !important;
}

.split-demo-section.light-section .healing-indicator-box {
  background: #f1f5f9 !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.split-demo-section.light-section .healing-number {
  color: #0f172a !important;
}

.split-demo-section.light-section .healing-text {
  color: #475569 !important;
}

.split-demo-section.light-section .healing-node-col {
  background: #f1f5f9 !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.split-demo-section.light-section .healing-node-col .node-title {
  color: #334155 !important;
}

.split-demo-section.light-section .healing-status-tag {
  color: #d97706 !important;
  background: rgba(217, 119, 6, 0.08) !important;
  border: 1px solid rgba(217, 119, 6, 0.15) !important;
}

.split-demo-section.light-section .healing-status-tag.healed {
  color: #059669 !important;
  background: rgba(5, 150, 105, 0.08) !important;
  border: 1px solid rgba(5, 150, 105, 0.15) !important;
}

.split-demo-section.light-section .healing-status-tag.broken {
  color: #dc2626 !important;
  background: rgba(220, 38, 38, 0.08) !important;
  border: 1px solid rgba(220, 38, 38, 0.15) !important;
}

.split-demo-section.light-section .healing-node-col.broken {
  border-color: rgba(220, 38, 38, 0.15) !important;
  background: rgba(220, 38, 38, 0.01) !important;
}

.split-demo-section.light-section .healing-node-col.healed-active {
  border-color: rgba(5, 150, 105, 0.25) !important;
  background: rgba(5, 150, 105, 0.02) !important;
}

.split-demo-section.light-section .healing-node-col .status-msg {
  color: #475569 !important;
}

.split-demo-section.light-section .healing-node-col.broken .status-msg {
  color: #dc2626 !important;
}

.split-demo-section.light-section .healing-node-col.healed-active .status-msg {
  color: #059669 !important;
}

.split-demo-section.light-section .healing-switch-btn {
  background: #e2e8f0 !important;
  color: #475569 !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.split-demo-section.light-section .healing-switch-btn.active {
  background: #0f172a !important;
  color: #ffffff !important;
}

/* Light Theme Override for CTA Section with Spider-Web */
.cta-section.light-section {
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Ensure spider web (hex portal) SVG is visible on white background */
.cta-section.light-section .hex-portal-purple .hex-group polygon,
.cta-section.light-section .hex-portal-purple .hex-group path {
  stroke: var(--primary) !important;
  opacity: 0.35 !important;
}

/* Style CTA box as solid premium dark-blue card */
.cta-section.light-section .cta-box {
  background: linear-gradient(135deg, #0a0f1d 0%, #03050a 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25) !important;
}

/* Thing 1: Animated Border Beam for CTA Box */
.cta-box-beam {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: conic-gradient(from 0deg at 50% 50%, transparent 40%, var(--primary) 50%, var(--secondary) 60%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  animation: rotateBeam 6s linear infinite;
}

@keyframes rotateBeam {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Thing 2: Floating Aurora Mesh Blobs */
.aurora-blob {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
  mix-blend-mode: screen;
}

.aurora-blob-cyan {
  background: var(--secondary);
  top: -50px;
  left: -50px;
  animation: auroraDrift1 25s infinite alternate ease-in-out;
}

.aurora-blob-purple {
  background: var(--primary);
  bottom: -50px;
  right: -50px;
  animation: auroraDrift2 25s infinite alternate ease-in-out;
}

@keyframes auroraDrift1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(120px, 80px) scale(1.2);
  }

  100% {
    transform: translate(-60px, 140px) scale(0.9);
  }
}

@keyframes auroraDrift2 {
  0% {
    transform: translate(0, 0) scale(1.1);
  }

  50% {
    transform: translate(-100px, -120px) scale(0.85);
  }

  100% {
    transform: translate(80px, 60px) scale(1.15);
  }
}

/* SECTION: Visual Testing Section */
.visual-testing-section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.visual-testing-section .container {
  position: relative;
  z-index: 2;
}

.visual-testing-section .hex-portal {
  top: -160px;
  left: -220px;
  opacity: 0.55;
}

.visual-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.visual-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.visual-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.925rem;
}

.visual-feature-item span {
  font-weight: 500;
}

.visual-feature-item .check-icon {
  color: var(--secondary);
  flex-shrink: 0;
}

.visual-mockup-wrapper {
  position: relative;
  z-index: 2;
}

.visual-mockup-frame {
  background: #090d1a;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  max-width: 500px;
  margin-left: auto;
}

.visual-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.2rem;
  background: #070a14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.visual-header-left {
  display: flex;
  align-items: center;
}

.visual-diff-badge {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.visual-page-title {
  color: #ffffff;
  font-weight: 700;
  margin-left: 0.6rem;
  font-size: 0.85rem;
}

.visual-meta {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-left: 0.6rem;
}

.visual-mode-toggle {
  display: flex;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 2px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.visual-toggle-btn {
  background: none;
  border: none;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.visual-toggle-btn.active {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 600;
}

.visual-slider-container {
  position: relative;
  width: 100%;
  height: 275px;
  overflow: hidden;
  background: #0b0f19;
  user-select: none;
  cursor: ew-resize;
}

.visual-screen-baseline,
.visual-screen-dev {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.visual-screen-dev {
  width: 50%;
  z-index: 2;
  border-right: 1.5px solid var(--primary);
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.15);
}

.visual-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.visual-slider-handle .handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.visual-mockup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.2rem;
  background: #070a14;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
}

.label-baseline {
  color: var(--secondary);
  font-weight: 600;
}

.label-current {
  color: var(--primary);
  font-weight: 600;
}

/* Goodreads Mock Visuals */
.mock-gr-page {
  padding: 0.8rem 1rem;
  background: #fbf9f4;
  width: 100%;
  height: 100%;
  color: #333333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

.mock-gr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e8e6df;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.mock-gr-logo {
  font-family: "Georgia", serif;
  font-size: 1rem;
  font-weight: bold;
  color: #382110;
  letter-spacing: -0.01em;
}

.mock-gr-search {
  font-size: 0.62rem;
  color: #9c9a96;
  padding: 3px 6px;
  border: 1px solid #d6d3c9;
  border-radius: 3px;
  background: #ffffff;
  width: 80px;
}

.mock-gr-hero-banner {
  background: #f4e3c1;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  border: 1px solid #e3cc98;
  flex-shrink: 0;
  transition: transform 0.2s;
  position: relative;
}

.mock-gr-hero-banner.shifted-banner {
  transform: translateY(4px);
  border-color: #fca5a5;
  background: #fee2e2;
}

.mock-gr-banner-text h3 {
  font-family: "Georgia", serif;
  font-size: 0.72rem;
  font-weight: bold;
  color: #181818;
  margin-bottom: 0.1rem;
}

.mock-gr-banner-text p {
  font-size: 0.55rem;
  color: #555555;
}

.mock-gr-book-section {
  position: relative;
  flex-grow: 1;
}

.mock-gr-book-section h4 {
  font-size: 0.65rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 0.35rem;
}

.mock-gr-book-grid {
  display: flex;
  gap: 0.75rem;
}

.mock-gr-book-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.mock-gr-book-cover {
  width: 44px;
  height: 66px;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: relative;
}

.mock-gr-book-cover.red-cover {
  background: #c2410c;
}

.mock-gr-book-cover.green-cover {
  background: #047857;
}

.mock-gr-book-cover.blue-cover {
  background: #1d4ed8;
}

.mock-gr-book-cover.purple-cover {
  background: #6d28d9;
}

.mock-gr-book-title {
  font-size: 0.52rem;
  font-weight: 500;
  color: #555555;
  margin-top: 0.2rem;
  white-space: nowrap;
}

/* Zequto Visual Diff Overlays */
.mock-visual-diff-highlight {
  position: absolute;
  border: 1.5px solid #ef4444;
  background: rgba(239, 68, 68, 0.12);
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
  animation: grDiffPulse 2.5s infinite ease-in-out;
}

.diff-banner-box {
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}

.diff-cover-box {
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}

@keyframes grDiffPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
    border-color: rgba(239, 68, 68, 1);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    border-color: rgba(239, 68, 68, 0.6);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    border-color: rgba(239, 68, 68, 1);
  }
}

.diff-tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 2px;
  transform: translateY(-3px);
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustment */
@media (max-width: 991px) {
  .visual-grid-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .visual-testing-section {
    padding: 4rem 0;
  }
}


/* Pricing Calculator styles */
.pricing-calculator-box {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.calc-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.calc-slider-wrapper {
  position: relative;
}

.pricing-calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
}

.pricing-calc-slider::-webkit-slider-runnable-track {
  background: rgba(255, 255, 255, 0.05);
  height: 6px;
  border-radius: 3px;
}

.pricing-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  box-shadow: 0 0 15px var(--secondary);
  cursor: pointer;
  margin-top: -7px;
  transition: transform 0.1s ease;
}

.pricing-calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.calc-right {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
}

.calc-recommendation-badge {
  background: rgba(6, 182, 212, 0.15);
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  width: fit-content;
  border: 1px solid rgba(6, 182, 212, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.calc-metric-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}

.calc-metric-label {
  color: var(--text-muted);
}

.calc-metric-val {
  color: #ffffff;
  font-weight: 600;
}

.calc-cost {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0.4rem;
  font-family: 'Outfit', sans-serif;
}

.pricing-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.pricing-card.pricing-calc-active {
  border-color: var(--secondary) !important;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.25) !important;
  transform: scale(1.03) translateY(-6px) !important;
}

@media (max-width: 768px) {
  .pricing-calculator-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

/* Global Page Loader Overlay */
.global-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #070a13;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.global-page-loader.fade-out {
  opacity: 0;
}

.global-loader-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--secondary) 0%, var(--primary) 100%);
  box-shadow: 0 0 10px var(--secondary);
  transition: width 0.4s ease;
}

.global-loader-logo {
  opacity: 0.15;
  animation: pulseLogoLoader 2s infinite alternate ease-in-out;
  width: 56px;
  height: 56px;
  color: var(--secondary);
}

@keyframes pulseLogoLoader {
  0% { transform: scale(0.9); opacity: 0.1; }
  100% { transform: scale(1.1); opacity: 0.25; }
}

.testimonial-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.testimonial-card.highlight-pulse {
  border-color: var(--secondary) !important;
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.45) !important;
  transform: scale(1.05) translateY(-5px) !important;
}

/* ----------------------------------------------------
   BLOG & ARTICLE PAGES STYLE SYSTEM
---------------------------------------------------- */
.blog-section {
  padding: 8rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}

.blog-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-pretitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #c084fc 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.blog-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #a78bfa 0%, #6366f1 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Featured Card style */
.blog-featured-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  max-height: 400px;
}

.blog-featured-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.1);
}

.blog-featured-img-wrapper {
  width: 40%;
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border-right: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-featured-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.5s ease;
  mix-blend-mode: plus-lighter;
}

.blog-featured-card:hover .blog-featured-img-wrapper img {
  transform: scale(1.02);
}

.blog-featured-content {
  width: 60%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a78bfa;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  align-self: flex-start;
}

.blog-featured-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.blog-featured-content h3 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-featured-content h3 a:hover {
  color: var(--secondary);
}

.blog-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.blog-meta-dot {
  width: 4px;
  height: 4px;
  background: #4b5563;
  border-radius: 50%;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: 0.5rem;
}

.blog-read-more:hover {
  color: var(--primary);
  gap: 0.7rem;
}

/* Post Cards Grid style */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.2);
  
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.08);
}

.blog-card-img-wrapper {
  height: 200px;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  mix-blend-mode: plus-lighter;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-wrapper img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.blog-card-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
}

.blog-card-content h4 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-content h4 a:hover {
  color: var(--secondary);
}

.blog-card-content .blog-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Post Detail page design */
.blog-post-header {
  padding: 8rem 0 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}

.blog-back-btn:hover {
  color: #ffffff;
}

.blog-post-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #a78bfa 0%, #6366f1 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.2rem 0;
}

.blog-author-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--font-display);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.blog-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.blog-author-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.blog-post-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.blog-post-featured-img {
  max-width: 680px;
  margin: 2rem auto;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-post-featured-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 1.2rem;
  mix-blend-mode: plus-lighter;
}

.blog-post-content-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.blog-post-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.blog-post-body p {
  margin-bottom: 1.2rem;
}

.blog-post-body h2 {
  font-size: 1.35rem;
  
  font-weight: 800;
  color: #ffffff;
  margin: 2rem 0 0.8rem 0;
  letter-spacing: -0.01em;
}

.blog-post-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 1.5rem 0 0.6rem 0;
}

.blog-post-body ul {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.blog-post-body li {
  margin-bottom: 0.4rem;
  list-style-type: disc;
}

.blog-post-body strong {
  color: #ffffff;
  font-weight: 700;
}

.blog-post-body blockquote {
  border-left: 4px solid var(--secondary);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.8rem 1.2rem;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  margin: 1.5rem 0;
  color: #ffffff;
  font-size: 0.95rem;
}

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

@media (max-width: 768px) {
  .blog-hero {
    margin-bottom: 2.5rem;
  }
  .blog-title {
    font-size: 2.2rem;
  }
  .blog-featured-card {
    flex-direction: column;
  }
  .blog-featured-img-wrapper {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  .blog-featured-content {
    width: 100%;
    padding: 2rem;
  }
  .blog-featured-content h3 {
    font-size: 1.6rem;
  }
  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-post-header h1 {
    font-size: 2.4rem;
  }
}

/* Post Intro Layout split column system */
.blog-post-intro-layout {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.blog-post-intro-img {
  width: 45%;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-post-intro-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 1.5rem;
  mix-blend-mode: plus-lighter;
}

.blog-post-intro-text {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-post-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 0.8rem 0 1.5rem 0;
}

.blog-intro-p {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 1.2rem;
}

@media (max-width: 992px) {
  .blog-post-intro-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .blog-post-intro-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .blog-post-intro-text {
    width: 100%;
  }
  .blog-post-main-title {
    font-size: 2.2rem;
  }
}

/* ----------------------------------------------------
   SUPERCHARGED PREMIUM INTERACTIVE COMPONENTS
---------------------------------------------------- */
/* 1. Quick Prompt Chips */
.quick-prompt-chips {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.prompt-chip {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  font-family: var(--font-body);
}

.prompt-chip:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
  color: #ffffff;
  transform: translateY(-1px);
}

/* 2. ROI Pricing Badge */
.pricing-roi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.roi-glow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: roiPulse 1.5s infinite alternate ease-in-out;
}

@keyframes roiPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

/* 3. Self Healing Success Pulse */
.healed-success-pulse {
  animation: successPulseGlow 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes successPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    border-color: rgba(16, 185, 129, 0.8);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(16, 185, 129, 0);
    border-color: var(--glass-border);
  }
}

/* 4. Click Spark Particles */
.click-spark-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  animation: sparkFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sparkFade {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(0);
    opacity: 0;
  }
}

/* ==========================================
   CUSTOM STYLES FOR AI-TEST-GENERATION.HTML
   ========================================== */
/* Subpage Hero */
    .subpage-hero {
      padding: 10rem 0 4rem 0;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    /* Widescreen Workspace Styles */
    .widescreen-workspace {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      background: rgba(15, 23, 42, 0.4);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(16px);
      margin-top: 1rem;
    }

    .workspace-left-panel {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 15, 30, 0.35);
      display: flex;
      flex-direction: column;
    }

    .workspace-right-panel {
      background: rgba(5, 8, 16, 0.5);
      display: flex;
      flex-direction: column;
    }

    .panel-header {
      padding: 0.9rem 1.4rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(0, 0, 0, 0.25);
    }

    .panel-title {
      font-size: 0.8rem;
      font-family: monospace;
      color: var(--text-muted);
      font-weight: 500;
    }

    .panel-body {
      padding: 1.5rem;
      flex-grow: 1;
    }

    /* Suggestion cards styling */
    .suggestion-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      cursor: pointer;
      text-align: left;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .suggestion-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    .suggestion-card.active-suggestion {
      background: rgba(99, 102, 241, 0.08);
      border-color: rgba(99, 102, 241, 0.3);
      box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
    }

    .suggestion-card-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.3rem;
    }

    .dot-indicator {
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    .dot-indicator.purple { background: #c084fc; box-shadow: 0 0 8px #c084fc; }
    .dot-indicator.cyan { background: #22d3ee; box-shadow: 0 0 8px #22d3ee; }
    .dot-indicator.green { background: #34d399; box-shadow: 0 0 8px #34d399; }

    .suggestion-card-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: #ffffff;
    }

    .suggestion-card-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
    }

    /* Live Prompt Simulator Styles */
    .prompt-input-wrapper {
      display: flex;
      gap: 0.6rem;
      margin-top: 1rem;
    }

    .prompt-input {
      flex: 1;
      background: rgba(10, 15, 30, 0.7);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      color: #ffffff;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .prompt-input:focus {
      border-color: var(--primary);
    }

    .prompt-btn {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: #ffffff;
      border: none;
      padding: 0.5rem 1.2rem;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      transition: opacity 0.2s ease;
    }

    .prompt-btn:hover {
      opacity: 0.9;
    }

    .console-screen {
      background: #05070f;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 1.2rem;
      font-family: monospace;
      font-size: 0.85rem;
      color: #cbd5e1;
      position: relative;
      overflow-y: auto;
    }

    .console-cursor {
      display: inline-block;
      width: 8px;
      height: 15px;
      background: var(--secondary);
      margin-left: 2px;
      animation: blink 0.8s infinite;
    }

    .console-loader {
      display: none;
      align-items: center;
      gap: 0.6rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    @media (max-width: 968px) {
      .widescreen-workspace {
        grid-template-columns: 1fr;
      }
      .workspace-left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
    }

    /* Timeline & Use Case Selector Grid */
    .interactive-usecase-section {
      padding: 5rem 0;
      position: relative;
    }

    .usecase-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .usecase-tabs-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .usecase-tab-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      padding: 1.2rem;
      border-radius: 12px;
      cursor: pointer;
      text-align: left;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usecase-tab-item:hover, .usecase-tab-item.active {
      background: rgba(124, 58, 237, 0.08);
      border-color: rgba(124, 58, 237, 0.3);
      transform: translateX(4px);
    }

    .usecase-tab-title {
      font-weight: 700;
      font-size: 1rem;
      color: #ffffff;
      margin-bottom: 0.3rem;
    }

    .usecase-tab-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .usecase-output-console {
      background: #090f1d;
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 380px;
    }

    .code-editor-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dot-group {
      display: flex;
      gap: 0.4rem;
    }

    .editor-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
    }

    .editor-dot.red { background: #ef4444; }
    .editor-dot.yellow { background: #eab308; }
    .editor-dot.green { background: #22c55e; }

    .editor-lang {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .nocode-body {
      font-size: 0.85rem;
      color: #e2e8f0;
      line-height: 1.6;
      flex-grow: 1;
    }

    /* No-Code Flow Elements */
    .nocode-flow-container {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding: 0.5rem 0;
      animation: fadeIn 0.4s ease;
    }

    .flow-step-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .flow-step-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .flow-step-left {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .flow-step-number {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-muted);
      font-family: monospace;
    }

    .flow-step-action {
      font-size: 0.82rem;
      font-weight: 600;
      color: #ffffff;
    }

    .flow-step-badge {
      font-size: 0.68rem;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      font-weight: 700;
    }

    .flow-step-badge.action {
      background: rgba(99, 102, 241, 0.15);
      color: #818cf8;
      border: 1px solid rgba(99, 102, 241, 0.25);
    }

    .flow-step-badge.verify {
      background: rgba(34, 211, 238, 0.15);
      color: #22d3ee;
      border: 1px solid rgba(34, 211, 238, 0.25);
    }

    .flow-step-badge.heal {
      background: rgba(16, 185, 129, 0.15);
      color: #4ade80;
      border: 1px solid rgba(16, 185, 129, 0.25);
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
    }

    .flow-arrow-connector {
      text-align: center;
      color: rgba(255, 255, 255, 0.15);
      font-size: 0.8rem;
      margin: -0.2rem 0;
      line-height: 1;
    }

    /* Steps Timeline Styles */
    .timeline-container {
      position: relative;
      margin-top: 2rem;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
      transform: translateX(-50%);
    }

        .timeline-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      position: relative;
      margin-bottom: 2rem;
      align-items: center;
    }

        /* Unified Line-by-Line Vertical Timeline Format */
    .timeline-container {
      position: relative;
      margin-top: 2.5rem;
      padding-left: 60px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #f59e0b 0%, #10b981 100%);
    }

    .timeline-step {
      display: flex;
      flex-direction: column;
      position: relative;
      margin-bottom: 2rem;
      cursor: pointer;
    }

    /* Override all odd/even staggered column rules for unified line-by-line alignment */
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
      grid-column: auto !important;
      text-align: left !important;
      width: 100% !important;
    }

    .timeline-badge {
      position: absolute;
      left: -60px;
      top: 12px;
      transform: none;
      width: 38px;
      height: 38px;
      background: #090f1d;
      border: 2px solid #f59e0b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.95rem;
      z-index: 2;
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    }

    .step-content {
      width: 100%;
      background: rgba(15, 23, 42, 0.65);
      border: 1px solid var(--glass-border);
      border-radius: 14px;
      padding: 1.3rem 1.6rem;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
    }

    .step-content:hover, .timeline-step.active-step .step-content {
      border-color: rgba(245, 158, 11, 0.4);
      background: rgba(15, 23, 42, 0.85);
      transform: translateY(-2px);
      box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
    }

/* Benefits Grid Section */
    .benefits-matrix-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .benefit-matrix-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 1.8rem;
      transition: all 0.3s ease;
    }

    .benefit-matrix-card:hover {
      border-color: rgba(79, 70, 229, 0.2);
      background: rgba(79, 70, 229, 0.03);
    }

    .benefit-icon-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .benefit-stat-tag {
      background: rgba(34, 197, 94, 0.12);
      color: #4ade80;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      border: 1px solid rgba(34, 197, 94, 0.2);
    }

    @keyframes blink {
      50% { opacity: 0; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    @media (max-width: 968px) {
      .subpage-hero-grid, .usecase-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .timeline-container::before {
        left: 20px;
      }
      .timeline-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 45px;
      }
      .timeline-badge {
        left: 20px;
      }
      .timeline-step:nth-child(even) .step-content {
        grid-column: 1;
      }
      .timeline-step:nth-child(even) .step-meta {
        grid-column: 1;
        text-align: left;
      }
      .benefits-matrix-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Subpage Unique Key Capabilities styling - Compact Horizontal Checklist */
    .subpage-capabilities-section {
      padding: 3.5rem 0;
      position: relative;
    }
    
    .subpage-capabilities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 2rem;
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .subpage-capability-card {
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 10px;
      padding: 0.85rem 1.2rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      transition: all 0.25s ease;
      position: relative;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    
    .subpage-capability-card:hover {
      border-color: rgba(99, 102, 241, 0.25);
      background: rgba(99, 102, 241, 0.03);
      transform: translateY(-2px);
    }
    
    .subpage-cap-icon-wrap {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(99, 102, 241, 0.1);
      color: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
      border: 1px solid rgba(99, 102, 241, 0.2);
      transition: all 0.25s ease;
    }

    .subpage-capability-card:hover .subpage-cap-icon-wrap {
      background: var(--secondary);
      color: #ffffff;
      box-shadow: 0 0 8px var(--secondary);
    }
    
    .subpage-cap-info {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    
    .subpage-cap-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
    }
    
    .subpage-cap-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .subpage-capabilities-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Suggestion pills styling */
    .suggestion-tag:hover {
      background: rgba(99, 102, 241, 0.15) !important;
      border-color: rgba(99, 102, 241, 0.3) !important;
      color: #ffffff !important;
      transform: translateY(-1px);
    }

    /* Interactive Timeline elements */
    .timeline-step {
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 0.4rem 0.6rem;
    }

    .timeline-step:hover {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .timeline-step.active-step {
      background: rgba(99, 102, 241, 0.04);
      border-color: rgba(99, 102, 241, 0.2);
    }

    .step-drawer {
      grid-column: 1 / span 2;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s ease, padding 0.3s ease;
      background: rgba(10, 15, 30, 0.6);
      border-radius: 8px;
      border: 1px solid transparent;
      width: 100%;
    }

    .timeline-step.active-step .step-drawer {
      max-height: 200px;
      margin-top: 1rem;
      padding: 1rem;
      border-color: rgba(99, 102, 241, 0.15);
    }

    .step-log-line {
      font-family: monospace;
      font-size: 0.8rem;
      line-height: 1.6;
      border-left: 2px solid var(--secondary);
      padding-left: 0.8rem;
    }

/* ==========================================
   CUSTOM STYLES FOR UI-AUTOMATION.HTML
   ========================================== */
/* Subpage Hero */
    .subpage-hero {
      padding: 10rem 0 4rem 0;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    /* Widescreen Workspace Styles */
    .widescreen-workspace {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      background: rgba(15, 23, 42, 0.4);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(16px);
      margin-top: 1rem;
    }

    .workspace-left-panel {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 15, 30, 0.35);
      display: flex;
      flex-direction: column;
    }

    .workspace-right-panel {
      background: rgba(5, 8, 16, 0.5);
      display: flex;
      flex-direction: column;
    }

    .panel-header {
      padding: 0.9rem 1.4rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(0, 0, 0, 0.25);
    }

    .panel-title {
      font-size: 0.8rem;
      font-family: monospace;
      color: var(--text-muted);
      font-weight: 500;
    }

    .panel-body {
      padding: 1.5rem;
      flex-grow: 1;
    }

    /* Mock Viewport / UI Test Canvas styling */
    .mock-browser-window {
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .mock-url-bar {
      background: rgba(10, 15, 30, 0.8);
      padding: 0.4rem 1rem;
      font-family: monospace;
      font-size: 0.75rem;
      color: var(--text-muted);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .mock-browser-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
    }
    .mock-browser-dot.red { background: #ef4444; }
    .mock-browser-dot.yellow { background: #eab308; }
    .mock-browser-dot.green { background: #22c55e; }

    .mock-viewport-canvas {
      padding: 2rem 1.5rem;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    /* Target overlay element selectors */
    .target-locator-box {
      border: 2px dashed transparent;
      border-radius: 6px;
      position: relative;
      transition: all 0.3s ease;
      width: 100%;
      max-width: 280px;
    }

    .target-locator-box.scanning {
      border-color: var(--accent-yellow);
      background: rgba(245, 158, 11, 0.03);
    }

    .target-locator-box.active-action {
      border-color: var(--accent-emerald);
      background: rgba(16, 185, 129, 0.05);
    }

    .target-badge-label {
      position: absolute;
      top: -18px;
      right: 10px;
      font-size: 0.62rem;
      font-family: monospace;
      padding: 0.1rem 0.4rem;
      border-radius: 4px;
      font-weight: 700;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .target-locator-box.scanning .target-badge-label {
      background: var(--accent-yellow);
      color: #000000;
      opacity: 1;
    }

    .target-locator-box.active-action .target-badge-label {
      background: var(--accent-emerald);
      color: #ffffff;
      opacity: 1;
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    }

    /* Live UI Mock Controls */
    .mock-form-group {
      margin-bottom: 0.8rem;
      width: 100%;
    }

    .mock-form-input {
      width: 100%;
      background: rgba(10, 15, 30, 0.8);
      border: 1px solid var(--glass-border);
      border-radius: 6px;
      padding: 0.6rem 0.8rem;
      color: #ffffff;
      font-size: 0.82rem;
      pointer-events: none;
      transition: all 0.3s;
    }

    .mock-form-input:focus, .mock-form-input.filled {
      border-color: var(--accent-emerald);
    }

    .mock-btn-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: #ffffff;
      font-weight: 700;
      border: none;
      padding: 0.6rem 1rem;
      border-radius: 6px;
      font-size: 0.85rem;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .mock-btn-submit.healed {
      background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--secondary) 100%);
      box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
    }

    /* Suggestion cards styling */
    .suggestion-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      cursor: pointer;
      text-align: left;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .suggestion-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    .suggestion-card.active-suggestion {
      background: rgba(16, 185, 129, 0.08);
      border-color: rgba(16, 185, 129, 0.3);
      box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
    }

    .suggestion-card-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.3rem;
    }

    .dot-indicator {
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    .dot-indicator.emerald { background: var(--accent-emerald); box-shadow: 0 0 8px var(--accent-emerald); }
    .dot-indicator.cyan { background: var(--secondary); box-shadow: 0 0 8px var(--secondary); }
    .dot-indicator.purple { background: var(--accent-purple); box-shadow: 0 0 8px var(--accent-purple); }

    .suggestion-card-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: #ffffff;
    }

    .suggestion-card-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
    }

    .prompt-btn {
      background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--secondary) 100%);
      color: #ffffff;
      border: none;
      padding: 0.5rem 1.2rem;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      transition: opacity 0.2s ease;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    }

    .prompt-btn:hover {
      opacity: 0.9;
    }

    .console-screen {
      background: #05070f;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 1.2rem;
      font-family: monospace;
      font-size: 0.85rem;
      color: #cbd5e1;
      position: relative;
      overflow-y: auto;
    }

    .console-cursor {
      display: inline-block;
      width: 8px;
      height: 15px;
      background: var(--accent-emerald);
      margin-left: 2px;
      animation: blink 0.8s infinite;
    }

    .console-loader {
      display: none;
      align-items: center;
      gap: 0.6rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    @media (max-width: 968px) {
      .widescreen-workspace {
        grid-template-columns: 1fr;
      }
      .workspace-left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
    }

    /* Timeline & Use Case Selector Grid */
    .interactive-usecase-section {
      padding: 5rem 0;
      position: relative;
    }

    .usecase-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .usecase-tabs-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .usecase-tab-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      padding: 1.2rem;
      border-radius: 12px;
      cursor: pointer;
      text-align: left;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usecase-tab-item:hover, .usecase-tab-item.active {
      background: rgba(16, 185, 129, 0.08);
      border-color: rgba(16, 185, 129, 0.3);
      transform: translateX(4px);
    }

    .usecase-tab-title {
      font-weight: 700;
      font-size: 1rem;
      color: #ffffff;
      margin-bottom: 0.3rem;
    }

    .usecase-tab-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .usecase-output-console {
      background: #090f1d;
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 380px;
    }

    .code-editor-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dot-group {
      display: flex;
      gap: 0.4rem;
    }

    .editor-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
    }

    .editor-dot.red { background: #ef4444; }
    .editor-dot.yellow { background: #eab308; }
    .editor-dot.green { background: #22c55e; }

    .editor-lang {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .nocode-body {
      font-size: 0.85rem;
      color: #e2e8f0;
      line-height: 1.6;
      flex-grow: 1;
    }

    /* No-Code Flow Elements */
    .nocode-flow-container {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding: 0.5rem 0;
      animation: fadeIn 0.4s ease;
    }

    .flow-step-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .flow-step-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .flow-step-left {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .flow-step-number {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-muted);
      font-family: monospace;
    }

    .flow-step-action {
      font-size: 0.82rem;
      font-weight: 600;
      color: #ffffff;
    }

    .flow-step-badge {
      font-size: 0.68rem;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      font-weight: 700;
    }

    .flow-step-badge.action {
      background: rgba(99, 102, 241, 0.15);
      color: #818cf8;
      border: 1px solid rgba(99, 102, 241, 0.25);
    }

    .flow-step-badge.verify {
      background: rgba(34, 211, 238, 0.15);
      color: #22d3ee;
      border: 1px solid rgba(34, 211, 238, 0.25);
    }

    .flow-step-badge.heal {
      background: rgba(16, 185, 129, 0.15);
      color: #4ade80;
      border: 1px solid rgba(16, 185, 129, 0.25);
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
    }

    .flow-arrow-connector {
      text-align: center;
      color: rgba(255, 255, 255, 0.15);
      font-size: 0.8rem;
      margin: -0.2rem 0;
      line-height: 1;
    }

    /* Steps Timeline Styles */
    .timeline-container {
      position: relative;
      margin-top: 2rem;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--accent-emerald) 0%, var(--secondary) 100%);
      transform: translateX(-50%);
    }

        .timeline-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      position: relative;
      margin-bottom: 2rem;
      align-items: center;
    }

        /* Unified Line-by-Line Vertical Timeline Format */
    .timeline-container {
      position: relative;
      margin-top: 2.5rem;
      padding-left: 60px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #f59e0b 0%, #10b981 100%);
    }

    .timeline-step {
      display: flex;
      flex-direction: column;
      position: relative;
      margin-bottom: 2rem;
      cursor: pointer;
    }

    /* Override all odd/even staggered column rules for unified line-by-line alignment */
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
      grid-column: auto !important;
      text-align: left !important;
      width: 100% !important;
    }

    .timeline-badge {
      position: absolute;
      left: -60px;
      top: 12px;
      transform: none;
      width: 38px;
      height: 38px;
      background: #090f1d;
      border: 2px solid #f59e0b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.95rem;
      z-index: 2;
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    }

    .step-content {
      width: 100%;
      background: rgba(15, 23, 42, 0.65);
      border: 1px solid var(--glass-border);
      border-radius: 14px;
      padding: 1.3rem 1.6rem;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
    }

    .step-content:hover, .timeline-step.active-step .step-content {
      border-color: rgba(245, 158, 11, 0.4);
      background: rgba(15, 23, 42, 0.85);
      transform: translateY(-2px);
      box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
    }

/* Benefits Grid Section */
    .benefits-matrix-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .benefit-matrix-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 1.8rem;
      transition: all 0.3s ease;
    }

    .benefit-matrix-card:hover {
      border-color: rgba(16, 185, 129, 0.2);
      background: rgba(16, 185, 129, 0.03);
    }

    .benefit-icon-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .benefit-stat-tag {
      background: rgba(16, 185, 129, 0.12);
      color: #4ade80;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      border: 1px solid rgba(16, 185, 129, 0.2);
    }

    @keyframes blink {
      50% { opacity: 0; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    @media (max-width: 968px) {
      .subpage-hero-grid, .usecase-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .timeline-container::before {
        left: 20px;
      }
      .timeline-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 45px;
      }
      .timeline-badge {
        left: 20px;
      }
      .timeline-step:nth-child(even) .step-content {
        grid-column: 1;
      }
      .timeline-step:nth-child(even) .step-meta {
        grid-column: 1;
        text-align: left;
      }
      .benefits-matrix-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Subpage Unique Key Capabilities styling - Compact Horizontal Checklist */
    .subpage-capabilities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      margin-top: 3.5rem;
    }

    .subpage-capability-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid rgba(255, 255, 255, 0.04);
      padding: 1.2rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .subpage-capability-card:hover {
      border-color: rgba(6, 182, 212, 0.15);
      background: rgba(6, 182, 212, 0.02);
      transform: translateY(-2px);
    }

    .subpage-cap-icon-wrap {
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.25);
      color: var(--accent-emerald);
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .subpage-cap-info {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .subpage-cap-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    .subpage-cap-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .subpage-capabilities-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Interactive Timeline elements */
    .timeline-step {
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 0.4rem 0.6rem;
    }

    .timeline-step:hover {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .timeline-step.active-step {
      background: rgba(16, 185, 129, 0.04);
      border-color: rgba(16, 185, 129, 0.2);
    }

    .step-drawer {
      grid-column: 1 / span 2;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s ease, padding 0.3s ease;
      background: rgba(10, 15, 30, 0.6);
      border-radius: 8px;
      border: 1px solid transparent;
      width: 100%;
    }

    .timeline-step.active-step .step-drawer {
      max-height: 200px;
      margin-top: 1rem;
      padding: 1rem;
      border-color: rgba(16, 185, 129, 0.15);
    }

    .step-log-line {
      font-family: monospace;
      font-size: 0.8rem;
      line-height: 1.6;
      border-left: 2px solid var(--secondary);
      padding-left: 0.8rem;
    }

/* ==========================================
   CUSTOM STYLES FOR API-TESTING.HTML
   ========================================== */
/* Subpage Hero */
    .subpage-hero {
      padding: 10rem 0 4rem 0;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    /* Widescreen Workspace Styles */
    .widescreen-workspace {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      background: rgba(15, 23, 42, 0.4);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(16px);
      margin-top: 1rem;
    }

    .workspace-left-panel {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 15, 30, 0.35);
      display: flex;
      flex-direction: column;
    }

    .workspace-right-panel {
      background: rgba(5, 8, 16, 0.5);
      display: flex;
      flex-direction: column;
    }

    .panel-header {
      padding: 0.9rem 1.4rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(0, 0, 0, 0.25);
    }

    .panel-title {
      font-size: 0.8rem;
      font-family: monospace;
      color: var(--text-muted);
      font-weight: 500;
    }

    .panel-body {
      padding: 1.5rem;
      flex-grow: 1;
    }

    /* Suggestion cards styling */
    .suggestion-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      cursor: pointer;
      text-align: left;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .suggestion-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    .suggestion-card.active-suggestion {
      background: rgba(6, 182, 212, 0.08);
      border-color: rgba(6, 182, 212, 0.3);
      box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
    }

    .suggestion-card-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.3rem;
    }

    .dot-indicator {
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    .dot-indicator.cyan { background: var(--secondary); box-shadow: 0 0 8px var(--secondary); }
    .dot-indicator.purple { background: var(--accent-purple); box-shadow: 0 0 8px var(--accent-purple); }
    .dot-indicator.green { background: var(--accent-emerald); box-shadow: 0 0 8px var(--accent-emerald); }

    .suggestion-card-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: #ffffff;
    }

    .suggestion-card-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
    }

    /* Live Prompt Simulator Styles */
    .prompt-input-wrapper {
      display: flex;
      gap: 0.6rem;
      margin-top: 1rem;
    }

    .prompt-input {
      flex: 1;
      background: rgba(10, 15, 30, 0.7);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      color: #ffffff;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .prompt-input:focus {
      border-color: var(--secondary);
    }

    .prompt-btn {
      background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
      color: #ffffff;
      border: none;
      padding: 0.5rem 1.2rem;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      transition: opacity 0.2s ease;
      box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
    }

    .prompt-btn:hover {
      opacity: 0.9;
    }

    .console-screen {
      background: #05070f;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 1.2rem;
      font-family: monospace;
      font-size: 0.85rem;
      color: #cbd5e1;
      position: relative;
      overflow-y: auto;
    }

    .console-cursor {
      display: inline-block;
      width: 8px;
      height: 15px;
      background: var(--secondary);
      margin-left: 2px;
      animation: blink 0.8s infinite;
    }

    .console-loader {
      display: none;
      align-items: center;
      gap: 0.6rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    @media (max-width: 968px) {
      .widescreen-workspace {
        grid-template-columns: 1fr;
      }
      .workspace-left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
    }

    /* Timeline & Use Case Grid */
    .interactive-usecase-section {
      padding: 5rem 0;
      position: relative;
    }

    .usecase-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .usecase-tabs-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .usecase-tab-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      padding: 1.2rem;
      border-radius: 12px;
      cursor: pointer;
      text-align: left;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usecase-tab-item:hover, .usecase-tab-item.active {
      background: rgba(6, 182, 212, 0.08);
      border-color: rgba(6, 182, 212, 0.3);
      transform: translateX(4px);
    }

    .usecase-tab-title {
      font-weight: 700;
      font-size: 1rem;
      color: #ffffff;
      margin-bottom: 0.3rem;
    }

    .usecase-tab-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .usecase-output-console {
      background: #090f1d;
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 380px;
    }

    .code-editor-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dot-group {
      display: flex;
      gap: 0.4rem;
    }

    .editor-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
    }

    .editor-dot.red { background: #ef4444; }
    .editor-dot.yellow { background: #eab308; }
    .editor-dot.green { background: #22c55e; }

    .editor-lang {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .nocode-body {
      font-size: 0.85rem;
      color: #e2e8f0;
      line-height: 1.6;
      flex-grow: 1;
    }

    /* No-Code Flow Elements */
    .nocode-flow-container {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding: 0.5rem 0;
      animation: fadeIn 0.4s ease;
    }

    .flow-step-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .flow-step-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .flow-step-left {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .flow-step-number {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-muted);
      font-family: monospace;
    }

    .flow-step-action {
      font-size: 0.82rem;
      font-weight: 600;
      color: #ffffff;
    }

    .flow-step-badge {
      font-size: 0.68rem;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      font-weight: 700;
    }

    .flow-step-badge.action {
      background: rgba(99, 102, 241, 0.15);
      color: #818cf8;
      border: 1px solid rgba(99, 102, 241, 0.25);
    }

    .flow-step-badge.verify {
      background: rgba(34, 211, 238, 0.15);
      color: #22d3ee;
      border: 1px solid rgba(34, 211, 238, 0.25);
    }

    .flow-step-badge.heal {
      background: rgba(16, 185, 129, 0.15);
      color: #4ade80;
      border: 1px solid rgba(16, 185, 129, 0.25);
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
    }

    .flow-arrow-connector {
      text-align: center;
      color: rgba(255, 255, 255, 0.15);
      font-size: 0.8rem;
      margin: -0.2rem 0;
      line-height: 1;
    }

    /* Steps Timeline Styles */
    .timeline-container {
      position: relative;
      margin-top: 2rem;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--secondary) 0%, var(--primary) 100%);
      transform: translateX(-50%);
    }

        .timeline-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      position: relative;
      margin-bottom: 2rem;
      align-items: center;
    }

        /* Unified Line-by-Line Vertical Timeline Format */
    .timeline-container {
      position: relative;
      margin-top: 2.5rem;
      padding-left: 60px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #f59e0b 0%, #10b981 100%);
    }

    .timeline-step {
      display: flex;
      flex-direction: column;
      position: relative;
      margin-bottom: 2rem;
      cursor: pointer;
    }

    /* Override all odd/even staggered column rules for unified line-by-line alignment */
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
      grid-column: auto !important;
      text-align: left !important;
      width: 100% !important;
    }

    .timeline-badge {
      position: absolute;
      left: -60px;
      top: 12px;
      transform: none;
      width: 38px;
      height: 38px;
      background: #090f1d;
      border: 2px solid #f59e0b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.95rem;
      z-index: 2;
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    }

    .step-content {
      width: 100%;
      background: rgba(15, 23, 42, 0.65);
      border: 1px solid var(--glass-border);
      border-radius: 14px;
      padding: 1.3rem 1.6rem;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
    }

    .step-content:hover, .timeline-step.active-step .step-content {
      border-color: rgba(245, 158, 11, 0.4);
      background: rgba(15, 23, 42, 0.85);
      transform: translateY(-2px);
      box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
    }

/* Benefits Grid Section */
    .benefits-matrix-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .benefit-matrix-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 1.8rem;
      transition: all 0.3s ease;
    }

    .benefit-matrix-card:hover {
      border-color: rgba(6, 182, 212, 0.2);
      background: rgba(6, 182, 212, 0.03);
    }

    .benefit-icon-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .benefit-stat-tag {
      background: rgba(6, 182, 212, 0.12);
      color: #22d3ee;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      border: 1px solid rgba(6, 182, 212, 0.2);
    }

    @keyframes blink {
      50% { opacity: 0; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    @media (max-width: 968px) {
      .subpage-hero-grid, .usecase-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .timeline-container::before {
        left: 20px;
      }
      .timeline-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 45px;
      }
      .timeline-badge {
        left: 20px;
      }
      .timeline-step:nth-child(even) .step-content {
        grid-column: 1;
      }
      .timeline-step:nth-child(even) .step-meta {
        grid-column: 1;
        text-align: left;
      }
      .benefits-matrix-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Subpage Unique Key Capabilities styling - Compact Horizontal Checklist */
    .subpage-capabilities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      margin-top: 3.5rem;
    }

    .subpage-capability-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid rgba(255, 255, 255, 0.04);
      padding: 1.2rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .subpage-capability-card:hover {
      border-color: rgba(6, 182, 212, 0.15);
      background: rgba(6, 182, 212, 0.02);
      transform: translateY(-2px);
    }

    .subpage-cap-icon-wrap {
      background: rgba(6, 182, 212, 0.1);
      border: 1px solid rgba(6, 182, 212, 0.25);
      color: var(--secondary);
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .subpage-cap-info {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .subpage-cap-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    .subpage-cap-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .subpage-capabilities-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Interactive Timeline elements */
    .timeline-step {
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 0.4rem 0.6rem;
    }

    .timeline-step:hover {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .timeline-step.active-step {
      background: rgba(6, 182, 212, 0.04);
      border-color: rgba(6, 182, 212, 0.2);
    }

    .step-drawer {
      grid-column: 1 / span 2;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s ease, padding 0.3s ease;
      background: rgba(10, 15, 30, 0.6);
      border-radius: 8px;
      border: 1px solid transparent;
      width: 100%;
    }

    .timeline-step.active-step .step-drawer {
      max-height: 200px;
      margin-top: 1rem;
      padding: 1rem;
      border-color: rgba(6, 182, 212, 0.15);
    }

    .step-log-line {
      font-family: monospace;
      font-size: 0.8rem;
      line-height: 1.6;
      border-left: 2px solid var(--secondary);
      padding-left: 0.8rem;
    }

/* ==========================================
   CUSTOM STYLES FOR DATABASE-TESTING.HTML
   ========================================== */
/* Subpage Hero */
    .subpage-hero {
      padding: 10rem 0 4rem 0;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    /* Widescreen Workspace Styles */
    .widescreen-workspace {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      background: rgba(15, 23, 42, 0.4);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(16px);
      margin-top: 1rem;
    }

    .workspace-left-panel {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 15, 30, 0.35);
      display: flex;
      flex-direction: column;
    }

    .workspace-right-panel {
      background: rgba(5, 8, 16, 0.5);
      display: flex;
      flex-direction: column;
    }

    .panel-header {
      padding: 0.9rem 1.4rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(0, 0, 0, 0.25);
    }

    .panel-title {
      font-size: 0.8rem;
      font-family: monospace;
      color: var(--text-muted);
      font-weight: 500;
    }

    .panel-body {
      padding: 1.5rem;
      flex-grow: 1;
    }

    /* Suggestion cards styling */
    .suggestion-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      cursor: pointer;
      text-align: left;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .suggestion-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    .suggestion-card.active-suggestion {
      background: rgba(245, 158, 11, 0.08);
      border-color: rgba(245, 158, 11, 0.3);
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
    }

    .suggestion-card-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.3rem;
    }

    .dot-indicator {
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    .dot-indicator.amber { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }
    .dot-indicator.purple { background: var(--accent-purple); box-shadow: 0 0 8px var(--accent-purple); }
    .dot-indicator.cyan { background: var(--secondary); box-shadow: 0 0 8px var(--secondary); }

    .suggestion-card-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: #ffffff;
    }

    .suggestion-card-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
    }

    /* Live Prompt Simulator Styles */
    .prompt-input-wrapper {
      display: flex;
      gap: 0.6rem;
      margin-top: 1rem;
    }

    .prompt-input {
      flex: 1;
      background: rgba(10, 15, 30, 0.7);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      color: #ffffff;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .prompt-input:focus {
      border-color: #f59e0b;
    }

    .prompt-btn {
      background: linear-gradient(135deg, #f59e0b 0%, var(--accent-purple) 100%);
      color: #ffffff;
      border: none;
      padding: 0.5rem 1.2rem;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      transition: opacity 0.2s ease;
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    }

    .prompt-btn:hover {
      opacity: 0.9;
    }

    .console-screen {
      background: #05070f;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 1.2rem;
      font-family: monospace;
      font-size: 0.85rem;
      color: #cbd5e1;
      position: relative;
      overflow-y: auto;
    }

    .console-cursor {
      display: inline-block;
      width: 8px;
      height: 15px;
      background: #f59e0b;
      margin-left: 2px;
      animation: blink 0.8s infinite;
    }

    .console-loader {
      display: none;
      align-items: center;
      gap: 0.6rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    @media (max-width: 968px) {
      .widescreen-workspace {
        grid-template-columns: 1fr;
      }
      .workspace-left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
    }

    /* Mock DB Table view elements */
    .mock-db-table {
      width: 100%;
      border-collapse: collapse;
      font-family: monospace;
      font-size: 0.76rem;
      color: #cbd5e1;
      background: rgba(10, 15, 30, 0.5);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .mock-db-table th {
      background: rgba(255, 255, 255, 0.04);
      padding: 0.5rem 0.8rem;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      color: #ffffff;
    }

    .mock-db-table td {
      padding: 0.5rem 0.8rem;
      border-bottom: 1px solid rgba(255,255,255,0.03);
    }

    .mock-db-row-highlight {
      border: 1.5px dashed transparent;
      transition: all 0.3s;
    }

    .mock-db-row-highlight.verifying {
      border-color: #f59e0b;
      background: rgba(245, 158, 11, 0.05);
    }

    .mock-db-row-highlight.passed {
      border-color: var(--accent-emerald);
      background: rgba(16, 185, 129, 0.05);
    }

    /* Timeline & Use Case Selector Grid */
    .interactive-usecase-section {
      padding: 5rem 0;
      position: relative;
    }

    .usecase-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .usecase-tabs-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .usecase-tab-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      padding: 1.2rem;
      border-radius: 12px;
      cursor: pointer;
      text-align: left;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usecase-tab-item:hover, .usecase-tab-item.active {
      background: rgba(245, 158, 11, 0.08);
      border-color: rgba(245, 158, 11, 0.3);
      transform: translateX(4px);
    }

    .usecase-tab-title {
      font-weight: 700;
      font-size: 1rem;
      color: #ffffff;
      margin-bottom: 0.3rem;
    }

    .usecase-tab-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .usecase-output-console {
      background: #090f1d;
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 380px;
    }

    .code-editor-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dot-group {
      display: flex;
      gap: 0.4rem;
    }

    .editor-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
    }

    .editor-dot.red { background: #ef4444; }
    .editor-dot.yellow { background: #eab308; }
    .editor-dot.green { background: #22c55e; }

    .editor-lang {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .nocode-body {
      font-size: 0.85rem;
      color: #e2e8f0;
      line-height: 1.6;
      flex-grow: 1;
    }

    /* No-Code Flow Elements */
    .nocode-flow-container {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding: 0.5rem 0;
      animation: fadeIn 0.4s ease;
    }

    .flow-step-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .flow-step-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .flow-step-left {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .flow-step-number {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-muted);
      font-family: monospace;
    }

    .flow-step-action {
      font-size: 0.82rem;
      font-weight: 600;
      color: #ffffff;
    }

    .flow-step-badge {
      font-size: 0.68rem;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      font-weight: 700;
    }

    .flow-step-badge.action {
      background: rgba(99, 102, 241, 0.15);
      color: #818cf8;
      border: 1px solid rgba(99, 102, 241, 0.25);
    }

    .flow-step-badge.verify {
      background: rgba(34, 211, 238, 0.15);
      color: #22d3ee;
      border: 1px solid rgba(34, 211, 238, 0.25);
    }

    .flow-step-badge.heal {
      background: rgba(16, 185, 129, 0.15);
      color: #4ade80;
      border: 1px solid rgba(16, 185, 129, 0.25);
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
    }

    .flow-arrow-connector {
      text-align: center;
      color: rgba(255, 255, 255, 0.15);
      font-size: 0.8rem;
      margin: -0.2rem 0;
      line-height: 1;
    }

    /* Steps Timeline Styles */
    .timeline-container {
      position: relative;
      margin-top: 2rem;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #f59e0b 0%, var(--accent-purple) 100%);
      transform: translateX(-50%);
    }

        .timeline-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      position: relative;
      margin-bottom: 2rem;
      align-items: center;
    }

        /* Unified Line-by-Line Vertical Timeline Format */
    .timeline-container {
      position: relative;
      margin-top: 2.5rem;
      padding-left: 60px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #f59e0b 0%, #10b981 100%);
    }

    .timeline-step {
      display: flex;
      flex-direction: column;
      position: relative;
      margin-bottom: 2rem;
      cursor: pointer;
    }

    /* Override all odd/even staggered column rules for unified line-by-line alignment */
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
      grid-column: auto !important;
      text-align: left !important;
      width: 100% !important;
    }

    .timeline-badge {
      position: absolute;
      left: -60px;
      top: 12px;
      transform: none;
      width: 38px;
      height: 38px;
      background: #090f1d;
      border: 2px solid #f59e0b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.95rem;
      z-index: 2;
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    }

    .step-content {
      width: 100%;
      background: rgba(15, 23, 42, 0.65);
      border: 1px solid var(--glass-border);
      border-radius: 14px;
      padding: 1.3rem 1.6rem;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
    }

    .step-content:hover, .timeline-step.active-step .step-content {
      border-color: rgba(245, 158, 11, 0.4);
      background: rgba(15, 23, 42, 0.85);
      transform: translateY(-2px);
      box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
    }

/* Benefits Grid Section */
    .benefits-matrix-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .benefit-matrix-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 1.8rem;
      transition: all 0.3s ease;
    }

    .benefit-matrix-card:hover {
      border-color: rgba(245, 158, 11, 0.2);
      background: rgba(245, 158, 11, 0.03);
    }

    .benefit-icon-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .benefit-stat-tag {
      background: rgba(245, 158, 11, 0.12);
      color: #fbbf24;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      border: 1px solid rgba(245, 158, 11, 0.2);
    }

    @keyframes blink {
      50% { opacity: 0; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    @media (max-width: 968px) {
      .subpage-hero-grid, .usecase-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .timeline-container::before {
        left: 20px;
      }
      .timeline-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 45px;
      }
      .timeline-badge {
        left: 20px;
      }
      .timeline-step:nth-child(even) .step-content {
        grid-column: 1;
      }
      .timeline-step:nth-child(even) .step-meta {
        grid-column: 1;
        text-align: left;
      }
      .benefits-matrix-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Subpage Unique Key Capabilities styling - Compact Horizontal Checklist */
    .subpage-capabilities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      margin-top: 3.5rem;
    }

    .subpage-capability-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid rgba(255, 255, 255, 0.04);
      padding: 1.2rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .subpage-capability-card:hover {
      border-color: rgba(245, 158, 11, 0.15);
      background: rgba(245, 158, 11, 0.02);
      transform: translateY(-2px);
    }

    .subpage-cap-icon-wrap {
      background: rgba(245, 158, 11, 0.1);
      border: 1px solid rgba(245, 158, 11, 0.25);
      color: #f59e0b;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .subpage-cap-info {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .subpage-cap-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    .subpage-cap-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .subpage-capabilities-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Interactive Timeline elements */
    .timeline-step {
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 0.4rem 0.6rem;
    }

    .timeline-step:hover {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .timeline-step.active-step {
      background: rgba(245, 158, 11, 0.04);
      border-color: rgba(245, 158, 11, 0.2);
    }

    .step-drawer {
      grid-column: 1 / span 2;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s ease, padding 0.3s ease;
      background: rgba(10, 15, 30, 0.6);
      border-radius: 8px;
      border: 1px solid transparent;
      width: 100%;
    }

    .timeline-step.active-step .step-drawer {
      max-height: 200px;
      margin-top: 1rem;
      padding: 1rem;
      border-color: rgba(245, 158, 11, 0.15);
    }

    .step-log-line {
      font-family: monospace;
      font-size: 0.8rem;
      line-height: 1.6;
      border-left: 2px solid var(--secondary);
      padding-left: 0.8rem;
    }

/* ==========================================
   CUSTOM STYLES FOR SELF-HEALING-TESTS.HTML
   ========================================== */
/* Subpage Hero */
    .subpage-hero {
      padding: 10rem 0 4rem 0;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    /* Widescreen Workspace Styles */
    .widescreen-workspace {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      background: rgba(15, 23, 42, 0.4);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(16px);
      margin-top: 1rem;
    }

    .workspace-left-panel {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 15, 30, 0.35);
      display: flex;
      flex-direction: column;
    }

    .workspace-right-panel {
      background: rgba(5, 8, 16, 0.5);
      display: flex;
      flex-direction: column;
    }

    .panel-header {
      padding: 0.9rem 1.4rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(0, 0, 0, 0.25);
    }

    .panel-title {
      font-size: 0.8rem;
      font-family: monospace;
      color: var(--text-muted);
      font-weight: 500;
    }

    .panel-body {
      padding: 1.5rem;
      flex-grow: 1;
    }

    /* Suggestion cards styling */
    .suggestion-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      cursor: pointer;
      text-align: left;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .suggestion-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    .suggestion-card.active-suggestion {
      background: rgba(236, 72, 153, 0.08);
      border-color: rgba(236, 72, 153, 0.3);
      box-shadow: 0 0 15px rgba(236, 72, 153, 0.1);
    }

    .suggestion-card-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.3rem;
    }

    .dot-indicator {
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    .dot-indicator.fuchsia { background: #ec4899; box-shadow: 0 0 8px #ec4899; }
    .dot-indicator.purple { background: var(--accent-purple); box-shadow: 0 0 8px var(--accent-purple); }
    .dot-indicator.cyan { background: var(--secondary); box-shadow: 0 0 8px var(--secondary); }

    .suggestion-card-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: #ffffff;
    }

    .suggestion-card-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
    }

    /* Live Prompt Simulator Styles */
    .prompt-input-wrapper {
      display: flex;
      gap: 0.6rem;
      margin-top: 1rem;
    }

    .prompt-input {
      flex: 1;
      background: rgba(10, 15, 30, 0.7);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      color: #ffffff;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .prompt-input:focus {
      border-color: #ec4899;
    }

    .prompt-btn {
      background: linear-gradient(135deg, #ec4899 0%, var(--accent-purple) 100%);
      color: #ffffff;
      border: none;
      padding: 0.5rem 1.2rem;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      transition: opacity 0.2s ease;
      box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
    }

    .prompt-btn:hover {
      opacity: 0.9;
    }

    .console-screen {
      background: #05070f;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 1.2rem;
      font-family: monospace;
      font-size: 0.85rem;
      color: #cbd5e1;
      position: relative;
      overflow-y: auto;
    }

    .console-cursor {
      display: inline-block;
      width: 8px;
      height: 15px;
      background: #ec4899;
      margin-left: 2px;
      animation: blink 0.8s infinite;
    }

    .console-loader {
      display: none;
      align-items: center;
      gap: 0.6rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    @media (max-width: 968px) {
      .widescreen-workspace {
        grid-template-columns: 1fr;
      }
      .workspace-left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
    }

    /* Mock Script visual display elements */
    .mock-code-line {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.3rem;
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .mock-code-line.drifted {
      background: rgba(239, 68, 68, 0.1);
      border: 1px dashed rgba(239, 68, 68, 0.3);
    }

    .mock-code-line.healed {
      background: rgba(16, 185, 129, 0.1);
      border: 1px dashed rgba(16, 185, 129, 0.3);
    }

    .code-action-tag {
      font-size: 0.62rem;
      text-transform: uppercase;
      padding: 0.1rem 0.3rem;
      border-radius: 3px;
      font-weight: 700;
    }

    .code-action-tag.fail { background: #ef4444; color: #ffffff; }
    .code-action-tag.heal { background: #10b981; color: #ffffff; }

    /* Timeline & Use Case Selector Grid */
    .interactive-usecase-section {
      padding: 5rem 0;
      position: relative;
    }

    .usecase-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .usecase-tabs-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .usecase-tab-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      padding: 1.2rem;
      border-radius: 12px;
      cursor: pointer;
      text-align: left;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usecase-tab-item:hover, .usecase-tab-item.active {
      background: rgba(236, 72, 153, 0.08);
      border-color: rgba(236, 72, 153, 0.3);
      transform: translateX(4px);
    }

    .usecase-tab-title {
      font-weight: 700;
      font-size: 1rem;
      color: #ffffff;
      margin-bottom: 0.3rem;
    }

    .usecase-tab-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .usecase-output-console {
      background: #090f1d;
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 380px;
    }

    .code-editor-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dot-group {
      display: flex;
      gap: 0.4rem;
    }

    .editor-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
    }

    .editor-dot.red { background: #ef4444; }
    .editor-dot.yellow { background: #eab308; }
    .editor-dot.green { background: #22c55e; }

    .editor-lang {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .nocode-body {
      font-size: 0.85rem;
      color: #e2e8f0;
      line-height: 1.6;
      flex-grow: 1;
    }

    /* No-Code Flow Elements */
    .nocode-flow-container {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding: 0.5rem 0;
      animation: fadeIn 0.4s ease;
    }

    .flow-step-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .flow-step-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .flow-step-left {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .flow-step-number {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-muted);
      font-family: monospace;
    }

    .flow-step-action {
      font-size: 0.82rem;
      font-weight: 600;
      color: #ffffff;
    }

    .flow-step-badge {
      font-size: 0.68rem;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      font-weight: 700;
    }

    .flow-step-badge.action {
      background: rgba(99, 102, 241, 0.15);
      color: #818cf8;
      border: 1px solid rgba(99, 102, 241, 0.25);
    }

    .flow-step-badge.verify {
      background: rgba(34, 211, 238, 0.15);
      color: #22d3ee;
      border: 1px solid rgba(34, 211, 238, 0.25);
    }

    .flow-step-badge.heal {
      background: rgba(16, 185, 129, 0.15);
      color: #4ade80;
      border: 1px solid rgba(16, 185, 129, 0.25);
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
    }

    .flow-arrow-connector {
      text-align: center;
      color: rgba(255, 255, 255, 0.15);
      font-size: 0.8rem;
      margin: -0.2rem 0;
      line-height: 1;
    }

    /* Steps Timeline Styles */
    .timeline-container {
      position: relative;
      margin-top: 2rem;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #ec4899 0%, var(--accent-purple) 100%);
      transform: translateX(-50%);
    }

        .timeline-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      position: relative;
      margin-bottom: 2rem;
      align-items: center;
    }

        /* Unified Line-by-Line Vertical Timeline Format */
    .timeline-container {
      position: relative;
      margin-top: 2.5rem;
      padding-left: 60px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #f59e0b 0%, #10b981 100%);
    }

    .timeline-step {
      display: flex;
      flex-direction: column;
      position: relative;
      margin-bottom: 2rem;
      cursor: pointer;
    }

    /* Override all odd/even staggered column rules for unified line-by-line alignment */
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
      grid-column: auto !important;
      text-align: left !important;
      width: 100% !important;
    }

    .timeline-badge {
      position: absolute;
      left: -60px;
      top: 12px;
      transform: none;
      width: 38px;
      height: 38px;
      background: #090f1d;
      border: 2px solid #f59e0b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.95rem;
      z-index: 2;
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    }

    .step-content {
      width: 100%;
      background: rgba(15, 23, 42, 0.65);
      border: 1px solid var(--glass-border);
      border-radius: 14px;
      padding: 1.3rem 1.6rem;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
    }

    .step-content:hover, .timeline-step.active-step .step-content {
      border-color: rgba(245, 158, 11, 0.4);
      background: rgba(15, 23, 42, 0.85);
      transform: translateY(-2px);
      box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
    }

/* Benefits Grid Section */
    .benefits-matrix-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .benefit-matrix-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 1.8rem;
      transition: all 0.3s ease;
    }

    .benefit-matrix-card:hover {
      border-color: rgba(236, 72, 153, 0.2);
      background: rgba(236, 72, 153, 0.03);
    }

    .benefit-icon-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .benefit-stat-tag {
      background: rgba(236, 72, 153, 0.12);
      color: #f472b6;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      border: 1px solid rgba(236, 72, 153, 0.2);
    }

    @keyframes blink {
      50% { opacity: 0; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    @media (max-width: 968px) {
      .subpage-hero-grid, .usecase-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .timeline-container::before {
        left: 20px;
      }
      .timeline-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 45px;
      }
      .timeline-badge {
        left: 20px;
      }
      .timeline-step:nth-child(even) .step-content {
        grid-column: 1;
      }
      .timeline-step:nth-child(even) .step-meta {
        grid-column: 1;
        text-align: left;
      }
      .benefits-matrix-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Subpage Unique Key Capabilities styling - Compact Horizontal Checklist */
    .subpage-capabilities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      margin-top: 3.5rem;
    }

    .subpage-capability-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid rgba(255, 255, 255, 0.04);
      padding: 1.2rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .subpage-capability-card:hover {
      border-color: rgba(236, 72, 153, 0.15);
      background: rgba(236, 72, 153, 0.02);
      transform: translateY(-2px);
    }

    .subpage-cap-icon-wrap {
      background: rgba(236, 72, 153, 0.1);
      border: 1px solid rgba(236, 72, 153, 0.25);
      color: #ec4899;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .subpage-cap-info {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .subpage-cap-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    .subpage-cap-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .subpage-capabilities-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Interactive Timeline elements */
    .timeline-step {
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 0.4rem 0.6rem;
    }

    .timeline-step:hover {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .timeline-step.active-step {
      background: rgba(236, 72, 153, 0.04);
      border-color: rgba(236, 72, 153, 0.2);
    }

    .step-drawer {
      grid-column: 1 / span 2;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s ease, padding 0.3s ease;
      background: rgba(10, 15, 30, 0.6);
      border-radius: 8px;
      border: 1px solid transparent;
      width: 100%;
    }

    .timeline-step.active-step .step-drawer {
      max-height: 200px;
      margin-top: 1rem;
      padding: 1rem;
      border-color: rgba(236, 72, 153, 0.15);
    }

    .step-log-line {
      font-family: monospace;
      font-size: 0.8rem;
      line-height: 1.6;
      border-left: 2px solid var(--secondary);
      padding-left: 0.8rem;
    }

/* ==========================================
   CUSTOM STYLES FOR CROSS-BROWSER-TESTING.HTML
   ========================================== */
/* Subpage Hero */
    .subpage-hero {
      padding: 10rem 0 4rem 0;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    /* Widescreen Workspace Styles */
    .widescreen-workspace {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      background: rgba(15, 23, 42, 0.4);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(16px);
      margin-top: 1rem;
    }

    .workspace-left-panel {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 15, 30, 0.35);
      display: flex;
      flex-direction: column;
    }

    .workspace-right-panel {
      background: rgba(5, 8, 16, 0.5);
      display: flex;
      flex-direction: column;
    }

    .panel-header {
      padding: 0.9rem 1.4rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(0, 0, 0, 0.25);
    }

    .panel-title {
      font-size: 0.8rem;
      font-family: monospace;
      color: var(--text-muted);
      font-weight: 500;
    }

    .panel-body {
      padding: 1.5rem;
      flex-grow: 1;
    }

    /* Suggestion cards styling */
    .suggestion-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      cursor: pointer;
      text-align: left;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .suggestion-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    .suggestion-card.active-suggestion {
      background: rgba(13, 148, 136, 0.08);
      border-color: rgba(13, 148, 136, 0.3);
      box-shadow: 0 0 15px rgba(13, 148, 136, 0.1);
    }

    .suggestion-card-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.3rem;
    }

    .dot-indicator {
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    .dot-indicator.teal { background: #0d9488; box-shadow: 0 0 8px #0d9488; }
    .dot-indicator.rose { background: #f43f5e; box-shadow: 0 0 8px #f43f5e; }
    .dot-indicator.cyan { background: var(--secondary); box-shadow: 0 0 8px var(--secondary); }

    .suggestion-card-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: #ffffff;
    }

    .suggestion-card-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
    }

    /* Live Prompt Simulator Styles */
    .prompt-input-wrapper {
      display: flex;
      gap: 0.6rem;
      margin-top: 1rem;
    }

    .prompt-input {
      flex: 1;
      background: rgba(10, 15, 30, 0.7);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      color: #ffffff;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .prompt-input:focus {
      border-color: #0d9488;
    }

    .prompt-btn {
      background: linear-gradient(135deg, #0d9488 0%, #f43f5e 100%);
      color: #ffffff;
      border: none;
      padding: 0.5rem 1.2rem;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      transition: opacity 0.2s ease;
      box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
    }

    .prompt-btn:hover {
      opacity: 0.9;
    }

    .console-screen {
      background: #05070f;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 1.2rem;
      font-family: monospace;
      font-size: 0.85rem;
      color: #cbd5e1;
      position: relative;
      overflow-y: auto;
    }

    .console-cursor {
      display: inline-block;
      width: 8px;
      height: 15px;
      background: #0d9488;
      margin-left: 2px;
      animation: blink 0.8s infinite;
    }

    .console-loader {
      display: none;
      align-items: center;
      gap: 0.6rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    @media (max-width: 968px) {
      .widescreen-workspace {
        grid-template-columns: 1fr;
      }
      .workspace-left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
    }

    /* Mock Viewport visual mockup frame */
    .mock-viewport-frame {
      background: rgba(10, 15, 30, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
    }

    .viewport-header {
      background: rgba(0, 0, 0, 0.4);
      padding: 0.4rem 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      font-family: monospace;
      color: var(--text-muted);
    }

    .viewport-address-bar {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      padding: 0.1rem 0.8rem;
      flex: 1;
      text-align: center;
      font-size: 0.68rem;
    }

    .viewport-content-canvas {
      flex: 1;
      padding: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    /* Simulated app rendering inside viewport */
    .simulated-app-desktop {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      opacity: 0.95;
    }

    .simulated-app-desktop .mock-header {
      height: 12px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      display: flex;
      justify-content: space-between;
    }

    .simulated-app-desktop .mock-hero {
      height: 60px;
      background: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, rgba(244, 63, 94, 0.1) 100%);
      border: 1px solid rgba(13, 148, 136, 0.2);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      color: #ffffff;
    }

    .simulated-app-desktop .mock-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
    }

    .simulated-app-desktop .mock-card {
      height: 35px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 3px;
    }

    /* Mobile rendering simulation */
    .simulated-app-mobile {
      width: 110px;
      height: 100%;
      border: 1.5px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      padding: 0.6rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      background: #050810;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .simulated-app-mobile .mock-header {
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 1px;
    }

    .simulated-app-mobile .mock-hero {
      height: 35px;
      background: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, rgba(244, 63, 94, 0.1) 100%);
      border-radius: 3px;
    }

    .simulated-app-mobile .mock-grid {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .simulated-app-mobile .mock-card {
      height: 15px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 2px;
    }

    /* No-Code Canvas Styles */
    .nocode-body {
      font-size: 0.85rem;
      color: #e2e8f0;
      line-height: 1.6;
      flex-grow: 1;
    }

    .nocode-flow-container {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding: 0.5rem 0;
      animation: fadeIn 0.4s ease;
    }

    .flow-step-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .flow-step-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .flow-step-left {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .flow-step-number {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-muted);
      font-family: monospace;
    }

    .flow-step-action {
      font-size: 0.82rem;
      font-weight: 600;
      color: #ffffff;
    }

    .flow-step-badge {
      font-size: 0.68rem;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      font-weight: 700;
    }

    .flow-step-badge.action {
      background: rgba(99, 102, 241, 0.15);
      color: #818cf8;
      border: 1px solid rgba(99, 102, 241, 0.25);
    }

    .flow-step-badge.verify {
      background: rgba(34, 211, 238, 0.15);
      color: #22d3ee;
      border: 1px solid rgba(34, 211, 238, 0.25);
    }

    .flow-step-badge.heal {
      background: rgba(16, 185, 129, 0.15);
      color: #4ade80;
      border: 1px solid rgba(16, 185, 129, 0.25);
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
    }

    .flow-arrow-connector {
      text-align: center;
      color: rgba(255, 255, 255, 0.15);
      font-size: 0.8rem;
      margin: -0.2rem 0;
      line-height: 1;
    }

    /* Timeline & Use Case Selector Grid */
    .interactive-usecase-section {
      padding: 5rem 0;
      position: relative;
    }

    .usecase-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .usecase-tabs-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .usecase-tab-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      padding: 1.2rem;
      border-radius: 12px;
      cursor: pointer;
      text-align: left;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usecase-tab-item:hover, .usecase-tab-item.active {
      background: rgba(13, 148, 136, 0.08);
      border-color: rgba(13, 148, 136, 0.3);
      transform: translateX(4px);
    }

    .usecase-tab-title {
      font-weight: 700;
      font-size: 1rem;
      color: #ffffff;
      margin-bottom: 0.3rem;
    }

    .usecase-tab-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .usecase-output-console {
      background: #090f1d;
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 380px;
    }

    .code-editor-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dot-group {
      display: flex;
      gap: 0.4rem;
    }

    .editor-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
    }

    .editor-dot.red { background: #ef4444; }
    .editor-dot.yellow { background: #eab308; }
    .editor-dot.green { background: #22c55e; }

    .editor-lang {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* Steps Timeline Styles */
    .timeline-container {
      position: relative;
      margin-top: 2rem;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #0d9488 0%, var(--accent-purple) 100%);
      transform: translateX(-50%);
    }

        .timeline-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      position: relative;
      margin-bottom: 2rem;
      align-items: center;
    }

        /* Unified Line-by-Line Vertical Timeline Format */
    .timeline-container {
      position: relative;
      margin-top: 2.5rem;
      padding-left: 60px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #f59e0b 0%, #10b981 100%);
    }

    .timeline-step {
      display: flex;
      flex-direction: column;
      position: relative;
      margin-bottom: 2rem;
      cursor: pointer;
    }

    /* Override all odd/even staggered column rules for unified line-by-line alignment */
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
      grid-column: auto !important;
      text-align: left !important;
      width: 100% !important;
    }

    .timeline-badge {
      position: absolute;
      left: -60px;
      top: 12px;
      transform: none;
      width: 38px;
      height: 38px;
      background: #090f1d;
      border: 2px solid #f59e0b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.95rem;
      z-index: 2;
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    }

    .step-content {
      width: 100%;
      background: rgba(15, 23, 42, 0.65);
      border: 1px solid var(--glass-border);
      border-radius: 14px;
      padding: 1.3rem 1.6rem;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
    }

    .step-content:hover, .timeline-step.active-step .step-content {
      border-color: rgba(245, 158, 11, 0.4);
      background: rgba(15, 23, 42, 0.85);
      transform: translateY(-2px);
      box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
    }

/* Benefits Grid Section */
    .benefits-matrix-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .benefit-matrix-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 1.8rem;
      transition: all 0.3s ease;
    }

    .benefit-matrix-card:hover {
      border-color: rgba(13, 148, 136, 0.2);
      background: rgba(13, 148, 136, 0.03);
    }

    .benefit-icon-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .benefit-stat-tag {
      background: rgba(13, 148, 136, 0.12);
      color: #2dd4bf;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      border: 1px solid rgba(13, 148, 136, 0.2);
    }

    @keyframes blink {
      50% { opacity: 0; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    @media (max-width: 968px) {
      .subpage-hero-grid, .usecase-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .timeline-container::before {
        left: 20px;
      }
      .timeline-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 45px;
      }
      .timeline-badge {
        left: 20px;
      }
      .timeline-step:nth-child(even) .step-content {
        grid-column: 1;
      }
      .timeline-step:nth-child(even) .step-meta {
        grid-column: 1;
        text-align: left;
      }
      .benefits-matrix-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Subpage Unique Key Capabilities styling - Compact Horizontal Checklist */
    .subpage-capabilities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      margin-top: 3.5rem;
    }

    .subpage-capability-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid rgba(255, 255, 255, 0.04);
      padding: 1.2rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .subpage-capability-card:hover {
      border-color: rgba(13, 148, 136, 0.15);
      background: rgba(13, 148, 136, 0.02);
      transform: translateY(-2px);
    }

    .subpage-cap-icon-wrap {
      background: rgba(13, 148, 136, 0.1);
      border: 1px solid rgba(13, 148, 136, 0.25);
      color: #0d9488;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .subpage-cap-info {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .subpage-cap-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    .subpage-cap-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .subpage-capabilities-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Interactive Timeline elements */
    .timeline-step {
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 0.4rem 0.6rem;
    }

    .timeline-step:hover {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .timeline-step.active-step {
      background: rgba(13, 148, 136, 0.04);
      border-color: rgba(13, 148, 136, 0.2);
    }

    .step-drawer {
      grid-column: 1 / span 2;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s ease, padding 0.3s ease;
      background: rgba(10, 15, 30, 0.6);
      border-radius: 8px;
      border: 1px solid transparent;
      width: 100%;
    }

    .timeline-step.active-step .step-drawer {
      max-height: 200px;
      margin-top: 1rem;
      padding: 1rem;
      border-color: rgba(13, 148, 136, 0.15);
    }

    .step-log-line {
      font-family: monospace;
      font-size: 0.8rem;
      line-height: 1.6;
      border-left: 2px solid var(--secondary);
      padding-left: 0.8rem;
    }

/* ==========================================
   CUSTOM STYLES FOR SMART-ASSERTIONS.HTML
   ========================================== */
/* Subpage Hero */
    .subpage-hero {
      padding: 10rem 0 4rem 0;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    /* Widescreen Workspace Styles */
    .widescreen-workspace {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      background: rgba(15, 23, 42, 0.4);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(16px);
      margin-top: 1rem;
    }

    .workspace-left-panel {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 15, 30, 0.35);
      display: flex;
      flex-direction: column;
    }

    .workspace-right-panel {
      background: rgba(5, 8, 16, 0.5);
      display: flex;
      flex-direction: column;
    }

    .panel-header {
      padding: 0.9rem 1.4rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(0, 0, 0, 0.25);
    }

    .panel-title {
      font-size: 0.8rem;
      font-family: monospace;
      color: var(--text-muted);
      font-weight: 500;
    }

    .panel-body {
      padding: 1.5rem;
      flex-grow: 1;
    }

    /* Suggestion cards styling */
    .suggestion-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      cursor: pointer;
      text-align: left;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .suggestion-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    .suggestion-card.active-suggestion {
      background: rgba(217, 70, 239, 0.08);
      border-color: rgba(217, 70, 239, 0.3);
      box-shadow: 0 0 15px rgba(217, 70, 239, 0.1);
    }

    .suggestion-card-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.3rem;
    }

    .dot-indicator {
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    .dot-indicator.fuchsia { background: #d946ef; box-shadow: 0 0 8px #d946ef; }
    .dot-indicator.cyan { background: #06b6d4; box-shadow: 0 0 8px #06b6d4; }
    .dot-indicator.yellow { background: #fbbf24; box-shadow: 0 0 8px #fbbf24; }

    .suggestion-card-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: #ffffff;
    }

    .suggestion-card-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
    }

    /* Live Prompt Simulator Styles */
    .prompt-btn {
      background: linear-gradient(135deg, #d946ef 0%, #06b6d4 100%);
      color: #ffffff;
      border: none;
      padding: 0.5rem 1.2rem;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      transition: opacity 0.2s ease;
      box-shadow: 0 4px 15px rgba(217, 70, 239, 0.2);
    }

    .prompt-btn:hover {
      opacity: 0.9;
    }

    .console-screen {
      background: #05070f;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 1rem 1.2rem;
      font-family: monospace;
      font-size: 0.82rem;
      color: #cbd5e1;
      overflow-y: auto;
    }

    .console-loader {
      display: none;
      align-items: center;
      gap: 0.6rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    @media (max-width: 968px) {
      .widescreen-workspace {
        grid-template-columns: 1fr;
      }
      .workspace-left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
    }

    /* Mock Viewport visual mockup frame */
    .mock-viewport-frame {
      background: rgba(10, 15, 30, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
    }

    .viewport-header {
      background: rgba(0, 0, 0, 0.4);
      padding: 0.4rem 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      font-family: monospace;
      color: var(--text-muted);
    }

    .viewport-address-bar {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      padding: 0.1rem 0.8rem;
      flex: 1;
      text-align: center;
      font-size: 0.68rem;
    }

    .viewport-content-canvas {
      flex: 1;
      padding: 1.2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.8rem;
      position: relative;
    }

    /* Simulated values display */
    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .comparison-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 6px;
      padding: 0.6rem 0.9rem;
    }

    .comparison-label {
      font-size: 0.65rem;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.2rem;
    }

    .comparison-val {
      font-size: 0.82rem;
      font-family: monospace;
      color: #ffffff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .match-status-banner {
      padding: 0.6rem 1rem;
      border-radius: 6px;
      font-family: monospace;
      font-size: 0.76rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .match-status-banner.fail {
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.25);
      color: #f87171;
    }

    .match-status-banner.pass {
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.25);
      color: #34d399;
      box-shadow: 0 0 15px rgba(16, 185, 129, 0.08);
    }

    /* No-Code Canvas Styles */
    .nocode-body {
      font-size: 0.85rem;
      color: #e2e8f0;
      line-height: 1.6;
      flex-grow: 1;
    }

    .nocode-flow-container {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding: 0.5rem 0;
      animation: fadeIn 0.4s ease;
    }

    .flow-step-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .flow-step-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .flow-step-left {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .flow-step-number {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-muted);
      font-family: monospace;
    }

    .flow-step-action {
      font-size: 0.82rem;
      font-weight: 600;
      color: #ffffff;
    }

    .flow-step-badge {
      font-size: 0.68rem;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      font-weight: 700;
    }

    .flow-step-badge.action {
      background: rgba(99, 102, 241, 0.15);
      color: #818cf8;
      border: 1px solid rgba(99, 102, 241, 0.25);
    }

    .flow-step-badge.verify {
      background: rgba(34, 211, 238, 0.15);
      color: #22d3ee;
      border: 1px solid rgba(34, 211, 238, 0.25);
    }

    .flow-step-badge.heal {
      background: rgba(16, 185, 129, 0.15);
      color: #4ade80;
      border: 1px solid rgba(16, 185, 129, 0.25);
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
    }

    .flow-arrow-connector {
      text-align: center;
      color: rgba(255, 255, 255, 0.15);
      font-size: 0.8rem;
      margin: -0.2rem 0;
      line-height: 1;
    }

    /* Timeline & Use Case Selector Grid */
    .interactive-usecase-section {
      padding: 5rem 0;
      position: relative;
    }

    .usecase-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .usecase-tabs-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .usecase-tab-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      padding: 1.2rem;
      border-radius: 12px;
      cursor: pointer;
      text-align: left;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usecase-tab-item:hover, .usecase-tab-item.active {
      background: rgba(217, 70, 239, 0.08);
      border-color: rgba(217, 70, 239, 0.3);
      transform: translateX(4px);
    }

    .usecase-tab-title {
      font-weight: 700;
      font-size: 1rem;
      color: #ffffff;
      margin-bottom: 0.3rem;
    }

    .usecase-tab-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .usecase-output-console {
      background: #090f1d;
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 380px;
    }

    .code-editor-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dot-group {
      display: flex;
      gap: 0.4rem;
    }

    .editor-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
    }

    .editor-dot.red { background: #ef4444; }
    .editor-dot.yellow { background: #eab308; }
    .editor-dot.green { background: #22c55e; }

    .editor-lang {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* Steps Timeline Styles */
    .timeline-container {
      position: relative;
      margin-top: 2rem;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #d946ef 0%, #06b6d4 100%);
      transform: translateX(-50%);
    }

        .timeline-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      position: relative;
      margin-bottom: 2rem;
      align-items: center;
    }

        /* Unified Line-by-Line Vertical Timeline Format */
    .timeline-container {
      position: relative;
      margin-top: 2.5rem;
      padding-left: 60px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #f59e0b 0%, #10b981 100%);
    }

    .timeline-step {
      display: flex;
      flex-direction: column;
      position: relative;
      margin-bottom: 2rem;
      cursor: pointer;
    }

    /* Override all odd/even staggered column rules for unified line-by-line alignment */
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
      grid-column: auto !important;
      text-align: left !important;
      width: 100% !important;
    }

    .timeline-badge {
      position: absolute;
      left: -60px;
      top: 12px;
      transform: none;
      width: 38px;
      height: 38px;
      background: #090f1d;
      border: 2px solid #f59e0b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.95rem;
      z-index: 2;
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    }

    .step-content {
      width: 100%;
      background: rgba(15, 23, 42, 0.65);
      border: 1px solid var(--glass-border);
      border-radius: 14px;
      padding: 1.3rem 1.6rem;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
    }

    .step-content:hover, .timeline-step.active-step .step-content {
      border-color: rgba(245, 158, 11, 0.4);
      background: rgba(15, 23, 42, 0.85);
      transform: translateY(-2px);
      box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
    }

/* Benefits Grid Section */
    .benefits-matrix-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .benefit-matrix-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 1.8rem;
      transition: all 0.3s ease;
    }

    .benefit-matrix-card:hover {
      border-color: rgba(217, 70, 239, 0.2);
      background: rgba(217, 70, 239, 0.03);
    }

    .benefit-icon-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .benefit-stat-tag {
      background: rgba(217, 70, 239, 0.12);
      color: #f472b6;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      border: 1px solid rgba(217, 70, 239, 0.2);
    }

    @keyframes blink {
      50% { opacity: 0; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    @media (max-width: 968px) {
      .subpage-hero-grid, .usecase-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .timeline-container::before {
        left: 20px;
      }
      .timeline-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 45px;
      }
      .timeline-badge {
        left: 20px;
      }
      .timeline-step:nth-child(even) .step-content {
        grid-column: 1;
      }
      .timeline-step:nth-child(even) .step-meta {
        grid-column: 1;
        text-align: left;
      }
      .benefits-matrix-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Subpage Unique Key Capabilities styling - Compact Horizontal Checklist */
    .subpage-capabilities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      margin-top: 3.5rem;
    }

    .subpage-capability-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid rgba(255, 255, 255, 0.04);
      padding: 1.2rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .subpage-capability-card:hover {
      border-color: rgba(217, 70, 239, 0.15);
      background: rgba(217, 70, 239, 0.02);
      transform: translateY(-2px);
    }

    .subpage-cap-icon-wrap {
      background: rgba(217, 70, 239, 0.1);
      border: 1px solid rgba(217, 70, 239, 0.25);
      color: #d946ef;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .subpage-cap-info {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .subpage-cap-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    .subpage-cap-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .subpage-capabilities-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Interactive Timeline elements */
    .timeline-step {
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 0.4rem 0.6rem;
    }

    .timeline-step:hover {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .timeline-step.active-step {
      background: rgba(217, 70, 239, 0.04);
      border-color: rgba(217, 70, 239, 0.2);
    }

    .step-drawer {
      grid-column: 1 / span 2;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s ease, padding 0.3s ease;
      background: rgba(10, 15, 30, 0.6);
      border-radius: 8px;
      border: 1px solid transparent;
      width: 100%;
    }

    .timeline-step.active-step .step-drawer {
      max-height: 200px;
      margin-top: 1rem;
      padding: 1rem;
      border-color: rgba(217, 70, 239, 0.15);
    }

    .step-log-line {
      font-family: monospace;
      font-size: 0.8rem;
      line-height: 1.6;
      border-left: 2px solid var(--secondary);
      padding-left: 0.8rem;
    }

/* ==========================================
   CUSTOM STYLES FOR CICD-INTEGRATION.HTML
   ========================================== */
/* Subpage Hero */
    .subpage-hero {
      padding: 10rem 0 4rem 0;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    /* Widescreen Workspace Styles */
    .widescreen-workspace {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      background: rgba(15, 23, 42, 0.4);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(16px);
      margin-top: 1rem;
    }

    .workspace-left-panel {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 15, 30, 0.35);
      display: flex;
      flex-direction: column;
    }

    .workspace-right-panel {
      background: rgba(5, 8, 16, 0.5);
      display: flex;
      flex-direction: column;
    }

    .panel-header {
      padding: 0.9rem 1.4rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(0, 0, 0, 0.25);
    }

    .panel-title {
      font-size: 0.8rem;
      font-family: monospace;
      color: var(--text-muted);
      font-weight: 500;
    }

    .panel-body {
      padding: 1.5rem;
      flex-grow: 1;
    }

    /* Suggestion cards styling */
    .suggestion-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.8rem 1rem;
      cursor: pointer;
      text-align: left;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .suggestion-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateX(4px);
    }

    .suggestion-card.active-suggestion {
      background: rgba(245, 158, 11, 0.08);
      border-color: rgba(245, 158, 11, 0.3);
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
    }

    .suggestion-card-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.3rem;
    }

    .dot-indicator {
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    .dot-indicator.amber { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }
    .dot-indicator.emerald { background: #10b981; box-shadow: 0 0 8px #10b981; }
    .dot-indicator.indigo { background: var(--primary); box-shadow: 0 0 8px var(--primary); }

    .suggestion-card-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: #ffffff;
    }

    .suggestion-card-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
    }

    /* Live Prompt Simulator Styles */
    .prompt-btn {
      background: linear-gradient(135deg, #f59e0b 0%, #10b981 100%);
      color: #ffffff;
      border: none;
      padding: 0.5rem 1.2rem;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      transition: opacity 0.2s ease;
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    }

    .prompt-btn:hover {
      opacity: 0.9;
    }

    .console-screen {
      background: #05070f;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 1rem 1.2rem;
      font-family: monospace;
      font-size: 0.82rem;
      color: #cbd5e1;
      overflow-y: auto;
    }

    .console-loader {
      display: none;
      align-items: center;
      gap: 0.6rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    @media (max-width: 968px) {
      .widescreen-workspace {
        grid-template-columns: 1fr;
      }
      .workspace-left-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
    }

    /* Mock Viewport visual mockup frame */
    .mock-viewport-frame {
      background: rgba(10, 15, 30, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
    }

    .viewport-header {
      background: rgba(0, 0, 0, 0.4);
      padding: 0.4rem 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      font-family: monospace;
      color: var(--text-muted);
    }

    .viewport-address-bar {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      padding: 0.1rem 0.8rem;
      flex: 1;
      text-align: center;
      font-size: 0.68rem;
    }

    .viewport-content-canvas {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
      padding: 1.5rem 1rem;
      box-sizing: border-box;
      position: relative;
    }

    /* Simulated Pipeline Stages Nodes */
    .pipeline-nodes-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      width: 100%;
      max-width: 100%;
      padding: 2rem 2.5rem 3.2rem 2.5rem;
      box-sizing: border-box;
    }

    .pipeline-nodes-row::before {
      content: '';
      position: absolute;
      left: calc(2.5rem + 22px);
      right: calc(2.5rem + 22px);
      top: calc(2rem + 22px);
      height: 2px;
      background: rgba(255, 255, 255, 0.15);
      z-index: 1;
      transform: none;
    }

    .pipeline-node {
      background: rgba(10, 15, 30, 0.95);
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
      position: relative;
      z-index: 2;
      transition: all 0.4s ease;
      color: #ffffff;
      flex-shrink: 0;
      line-height: 1;
    }

    .node-num {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      line-height: 1;
    }

    .pipeline-node.pending {
      border-color: rgba(255, 255, 255, 0.15);
      color: var(--text-muted);
    }

    .pipeline-node.running {
      border-color: #f59e0b;
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
      color: #f59e0b;
      animation: pulseNode 1s infinite alternate;
    }

    .pipeline-node.success {
      border-color: #10b981;
      background: rgba(16, 185, 129, 0.1);
      box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
      color: #10b981;
    }

    .node-label {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.65rem;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 700;
      color: var(--text-muted);
      pointer-events: none;
      line-height: 1;
    }

    .pipeline-node.running .node-label {
      color: #f59e0b;
    }

    .pipeline-node.success .node-label {
      color: #10b981;
    }

    @keyframes pulseNode {
      0% { opacity: 0.6; }
      100% { opacity: 1; }
    }

    /* No-Code Canvas Styles */
    .nocode-body {
      font-size: 0.85rem;
      color: #e2e8f0;
      line-height: 1.6;
      flex-grow: 1;
    }

    .nocode-flow-container {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding: 0.5rem 0;
      animation: fadeIn 0.4s ease;
    }

    .flow-step-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .flow-step-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .flow-step-left {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .flow-step-number {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--text-muted);
      font-family: monospace;
    }

    .flow-step-action {
      font-size: 0.82rem;
      font-weight: 600;
      color: #ffffff;
    }

    .flow-step-badge {
      font-size: 0.68rem;
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      font-weight: 700;
    }

    .flow-step-badge.action {
      background: rgba(99, 102, 241, 0.15);
      color: #818cf8;
      border: 1px solid rgba(99, 102, 241, 0.25);
    }

    .flow-step-badge.verify {
      background: rgba(34, 211, 238, 0.15);
      color: #22d3ee;
      border: 1px solid rgba(34, 211, 238, 0.25);
    }

    .flow-step-badge.heal {
      background: rgba(16, 185, 129, 0.15);
      color: #4ade80;
      border: 1px solid rgba(16, 185, 129, 0.25);
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
    }

    .flow-arrow-connector {
      text-align: center;
      color: rgba(255, 255, 255, 0.15);
      font-size: 0.8rem;
      margin: -0.2rem 0;
      line-height: 1;
    }

    /* Timeline & Use Case Selector Grid */
    .interactive-usecase-section {
      padding: 5rem 0;
      position: relative;
    }

    .usecase-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .usecase-tabs-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .usecase-tab-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      padding: 1.2rem;
      border-radius: 12px;
      cursor: pointer;
      text-align: left;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usecase-tab-item:hover, .usecase-tab-item.active {
      background: rgba(245, 158, 11, 0.08);
      border-color: rgba(245, 158, 11, 0.3);
      transform: translateX(4px);
    }

    .usecase-tab-title {
      font-weight: 700;
      font-size: 1rem;
      color: #ffffff;
      margin-bottom: 0.3rem;
    }

    .usecase-tab-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .usecase-output-console {
      background: #090f1d;
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 380px;
    }

    .code-editor-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dot-group {
      display: flex;
      gap: 0.4rem;
    }

    .editor-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
    }

    .editor-dot.red { background: #ef4444; }
    .editor-dot.yellow { background: #eab308; }
    .editor-dot.green { background: #22c55e; }

    .editor-lang {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* Steps Timeline Styles */
    .timeline-container {
      position: relative;
      margin-top: 2rem;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #f59e0b 0%, #10b981 100%);
      transform: translateX(-50%);
    }

        .timeline-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      position: relative;
      margin-bottom: 2rem;
      align-items: center;
    }

        /* Unified Line-by-Line Vertical Timeline Format */
    .timeline-container {
      position: relative;
      margin-top: 2.5rem;
      padding-left: 60px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #f59e0b 0%, #10b981 100%);
    }

    .timeline-step {
      display: flex;
      flex-direction: column;
      position: relative;
      margin-bottom: 2rem;
      cursor: pointer;
    }

    /* Override all odd/even staggered column rules for unified line-by-line alignment */
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
      grid-column: auto !important;
      text-align: left !important;
      width: 100% !important;
    }

    .timeline-badge {
      position: absolute;
      left: -60px;
      top: 12px;
      transform: none;
      width: 38px;
      height: 38px;
      background: #090f1d;
      border: 2px solid #f59e0b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.95rem;
      z-index: 2;
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    }

    .step-content {
      width: 100%;
      background: rgba(15, 23, 42, 0.65);
      border: 1px solid var(--glass-border);
      border-radius: 14px;
      padding: 1.3rem 1.6rem;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
    }

    .step-content:hover, .timeline-step.active-step .step-content {
      border-color: rgba(245, 158, 11, 0.4);
      background: rgba(15, 23, 42, 0.85);
      transform: translateY(-2px);
      box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
    }

/* Benefits Grid Section */
    .benefits-matrix-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .benefit-matrix-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 1.8rem;
      transition: all 0.3s ease;
    }

    .benefit-matrix-card:hover {
      border-color: rgba(245, 158, 11, 0.2);
      background: rgba(245, 158, 11, 0.03);
    }

    .benefit-icon-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .benefit-stat-tag {
      background: rgba(245, 158, 11, 0.12);
      color: #fbbf24;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      border: 1px solid rgba(245, 158, 11, 0.2);
    }

    @keyframes blink {
      50% { opacity: 0; }
    }

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

    @media (max-width: 968px) {
      .subpage-hero-grid, .usecase-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .timeline-container::before {
        left: 20px;
      }
      .timeline-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 45px;
      }
      .timeline-badge {
        left: 20px;
      }
      .timeline-step:nth-child(even) .step-content {
        grid-column: 1;
      }
      .timeline-step:nth-child(even) .step-meta {
        grid-column: 1;
        text-align: left;
      }
      .benefits-matrix-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Subpage Unique Key Capabilities styling - Compact Horizontal Checklist */
    .subpage-capabilities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      margin-top: 3.5rem;
    }

    .subpage-capability-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid rgba(255, 255, 255, 0.04);
      padding: 1.2rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .subpage-capability-card:hover {
      border-color: rgba(245, 158, 11, 0.15);
      background: rgba(245, 158, 11, 0.02);
      transform: translateY(-2px);
    }

    .subpage-cap-icon-wrap {
      background: rgba(245, 158, 11, 0.1);
      border: 1px solid rgba(245, 158, 11, 0.25);
      color: #f59e0b;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .subpage-cap-info {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .subpage-cap-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
    }

    .subpage-cap-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .subpage-capabilities-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Interactive Timeline elements */
    .timeline-step {
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 0.4rem 0.6rem;
    }

    .timeline-step:hover {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .timeline-step.active-step {
      background: rgba(245, 158, 11, 0.04);
      border-color: rgba(245, 158, 11, 0.2);
    }

    .step-drawer {
      grid-column: 1 / span 2;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s ease, padding 0.3s ease;
      background: rgba(10, 15, 30, 0.6);
      border-radius: 8px;
      border: 1px solid transparent;
      width: 100%;
    }

    .timeline-step.active-step .step-drawer {
      max-height: 200px;
      margin-top: 1rem;
      padding: 1rem;
      border-color: rgba(245, 158, 11, 0.15);
    }

    .step-log-line {
      font-family: monospace;
      font-size: 0.8rem;
      line-height: 1.6;
      border-left: 2px solid var(--secondary);
      padding-left: 0.8rem;
    }