/* ==========================================================================
   SteelOMS Marketing CSS - Premium Dark / Glassmorphic Aesthetic
   Inspired by steep.app
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
  /* Colors */
  --bg-obsidian: #07080d;
  --bg-deep-slate: #0d0f1a;
  --bg-card: rgba(18, 22, 41, 0.6);
  --bg-card-hover: rgba(28, 33, 58, 0.85);
  --border-color: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  --color-primary: #8b5cf6; /* Cyber Violet */
  --color-primary-glow: rgba(139, 92, 246, 0.35);
  --color-secondary: #06b6d4; /* Neon Cyan */
  --color-secondary-glow: rgba(6, 182, 212, 0.35);
  --color-accent: #10b981; /* Emerald Green */
  --color-warning: #f59e0b; /* Amber */
  --color-error: #ef4444; /* Rose Red */
  
  --text-pure-white: #ffffff;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dark: #475569;
  
  /* Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layouts & Transitions */
  --container-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  --glass-bg: rgba(8, 10, 21, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   1. Global Resets & Document Defaults
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-obsidian);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

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

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 2px solid var(--bg-obsidian);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* --------------------------------------------------------------------------
   2. Layout & Typography Utilities
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   3. Ambient Decorative Glows
   -------------------------------------------------------------------------- */
.glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1500px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
}

.glow-1 {
  top: -200px;
  right: 10%;
  width: 500px;
  height: 500px;
  background: var(--color-primary);
}

.glow-2 {
  top: 300px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: var(--color-secondary);
}

.glow-3 {
  top: 800px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: var(--color-primary);
}

/* --------------------------------------------------------------------------
   4. Buttons & Interactive Controls
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #7c3aed 100%);
  color: var(--text-pure-white);
  box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--color-primary-glow);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-pure-white);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
}

.btn-text {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.btn-text:hover:not(:disabled) {
  color: var(--color-secondary);
}

.btn-text:disabled {
  color: var(--text-dark);
  cursor: not-allowed;
}

/* Loading States for Buttons */
.btn-loading-target {
  position: relative;
}

.btn-loading-target.loading span:first-child {
  opacity: 0;
}

.btn-loading-target.loading .loader {
  display: block;
}

.loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: var(--text-pure-white);
  animation: spin 0.8s linear infinite;
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
}

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

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

/* --------------------------------------------------------------------------
   5. Header & Sticky Navigation
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background: rgba(7, 8, 13, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(7, 8, 13, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-pure-white);
  letter-spacing: -0.03em;
}

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

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 10px;
  color: var(--text-pure-white);
  font-size: 1.3rem;
  box-shadow: 0 4px 15px var(--color-primary-glow);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text-pure-white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-btn-login {
  padding: 0.6rem 1.2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  color: var(--text-pure-white);
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--bg-obsidian);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem;
  z-index: 99;
  transform: translateY(-120%);
  transition: var(--transition-smooth);
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-links a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  display: block;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   6. Hero & Visual Impact Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  text-align: center;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

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

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

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-main);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-pure-white);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3.5rem auto 1rem;
  padding: 1.25rem 2.5rem;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats-strip[data-fade-in] {
  transition-delay: 0.5s;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-pure-white);
  background: linear-gradient(135deg, #a78bfa 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.stat-item-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .hero-stats-strip {
    flex-wrap: wrap;
    gap: 1.5rem 1rem;
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 90%;
  }
  .stat-item-divider {
    display: none;
  }
  .stat-item {
    flex: 0 0 calc(50% - 0.5rem);
  }
  .stat-number {
    font-size: 1.4rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
}

/* Fade-in Scroll Animation Base (Scroll Observer Triggered) */
[data-fade-in] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.0s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.0s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

[data-fade-in].visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge[data-fade-in] { transition-delay: 0.1s; }
.hero-title[data-fade-in] { transition-delay: 0.2s; }
.hero-subtitle[data-fade-in] { transition-delay: 0.3s; }
.hero-actions[data-fade-in] { transition-delay: 0.4s; }

/* Staggered grid entry for Analytics cards */
.analytics-suite-card[data-fade-in]:nth-child(1) { transition-delay: 0.1s; }
.analytics-suite-card[data-fade-in]:nth-child(2) { transition-delay: 0.2s; }
.analytics-suite-card[data-fade-in]:nth-child(3) { transition-delay: 0.3s; }
.analytics-suite-card[data-fade-in]:nth-child(4) { transition-delay: 0.15s; }
.analytics-suite-card[data-fade-in]:nth-child(5) { transition-delay: 0.25s; }
.analytics-suite-card[data-fade-in]:nth-child(6) { transition-delay: 0.35s; }

/* Hero Screenshot Preview */
.hero-screenshot-container {
  position: relative;
  max-width: 1000px;
  margin: 5rem auto 0;
  z-index: 3;
}

.hero-screenshot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}

.hero-screenshot-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s;
}

.hero-screenshot-container:hover .hero-screenshot-img {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--border-hover);
}

.hero-screenshot-container[data-fade-in] { transition-delay: 0.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* /* --------------------------------------------------------------------------
   7. Interactive Tour & Dashboard Showcase
   -------------------------------------------------------------------------- */
.demo-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.dashboard-mockup {
  background: #D4F1F4;
  border: 1px solid #B3E5FC;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(5, 68, 94, 0.15), 0 0 0 1px rgba(24, 154, 180, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 640px;
  width: 100%;
}

/* Mock Browser Topbar */
.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: #05445E;
  border-bottom: 1px solid #189AB4;
}

.mock-dots {
  display: flex;
  gap: 0.5rem;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dots span:nth-child(1) { background: #ff5f56; }
.mock-dots span:nth-child(2) { background: #ffbd2e; }
.mock-dots span:nth-child(3) { background: #27c93f; }

.mock-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.3rem 3rem;
  font-size: 0.8rem;
  color: #E6F7F4;
}

.mock-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 600;
}

.user-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #75E6DA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #05445E;
}

/* Mock Layout Body */
.mock-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Mockup Dashboard Image Container */
.mock-image-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #05445E;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.mock-dashboard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-mockup:hover .mock-dashboard-img {
  transform: scale(1.015);
}

/* Custom Dropdown Caret styling inside input-wrapper */
.input-wrapper .dropdown-icon {
  margin-left: auto;
  pointer-events: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.input-wrapper:focus-within .dropdown-icon {
  color: var(--color-primary);
}

/* Sidebar Mockup */
.mock-sidebar {
  width: 240px;
  background: #E6F7F4;
  border-right: 1px solid #B3E5FC;
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #05445E;
  padding-left: 0.5rem;
}

.sidebar-brand i {
  color: #189AB4;
}

/* Scrollable Sidebar Menu */
.sidebar-scrollable-menu {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-right: 0.25rem;
}

.sidebar-scrollable-menu::-webkit-scrollbar {
  width: 4px;
}
.sidebar-scrollable-menu::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar-scrollable-menu::-webkit-scrollbar-thumb {
  background: #B3E5FC;
  border-radius: 4px;
}

/* Sidebar Accordion Categories */
.sidebar-category {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4A5568;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.category-header:hover {
  color: #05445E;
}

.category-header span {
  flex: 1;
}

.category-header .toggle-caret {
  font-size: 0.65rem;
  transition: transform 0.3s;
  color: #4A5568;
}

.category-header.collapsed .toggle-caret {
  transform: rotate(-90deg);
}

.category-menu {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  max-height: 500px;
  opacity: 1;
}

.category-menu.collapsed {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.category-menu li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #05445E;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.category-menu li i {
  font-size: 0.9rem;
  color: #189AB4;
  width: 16px;
  text-align: center;
}

.category-menu li:hover {
  background: rgba(24, 154, 180, 0.08);
  color: #05445E;
}

.category-menu li.active {
  background: #75E6DA;
  color: #05445E;
  font-weight: 700;
  border-left-color: #05445E;
}

.sidebar-footer {
  padding-top: 0.75rem;
  border-top: 1px solid #B3E5FC;
}

.connection-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #05445E;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 8px #10B981;
}

/* Content Area Mockup */
.mock-content {
  flex: 1;
  background: #D4F1F4;
  padding: 1.5rem;
  overflow-y: auto;
}

.mock-content::-webkit-scrollbar {
  width: 6px;
}
.mock-content::-webkit-scrollbar-track {
  background: transparent;
}
.mock-content::-webkit-scrollbar-thumb {
  background: #a5d8dd;
  border-radius: 4px;
}

.tab-pane {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
}

.tab-pane.active {
  display: flex;
  animation: mockFadeIn 0.3s ease;
}

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

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

.content-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #05445E;
  margin-bottom: 0.15rem;
}

.content-header p {
  font-size: 0.8rem;
  color: #4A5568;
}

.mock-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mock-btn {
  background: #05445E;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.mock-btn:hover {
  background: #189AB4;
}

.mock-btn-secondary {
  background: #FFFFFF;
  border: 1px solid #B3E5FC;
  color: #05445E;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.2s;
}

.mock-btn-secondary:hover {
  background: #E6F7F4;
  border-color: #75E6DA;
}

.search-bar-mock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid #B3E5FC;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  width: 200px;
  font-size: 0.78rem;
  color: #718096;
}

/* Table Design */
.mock-table-wrapper {
  background: #FFFFFF;
  border: 1px solid #B3E5FC;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(5, 68, 94, 0.04);
  overflow: hidden;
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.8rem;
}

.mock-table th, .mock-table td {
  padding: 0.75rem 1rem;
}

.mock-table th {
  background: #E6F7F4;
  font-weight: 700;
  color: #05445E;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #B3E5FC;
}

.mock-table td {
  border-bottom: 1px solid #E6F7F4;
  color: #2D3748;
}

.mock-table tbody tr {
  transition: background 0.15s;
}

.mock-table tbody tr:hover {
  background: #F6FBFA;
}

.id-badge {
  font-family: monospace;
  background: #E6F7F4;
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  color: #05445E;
  font-weight: 700;
  font-size: 0.75rem;
}

.status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  display: inline-block;
}

.status-badge.processing { background: #fef3c7; color: #d97706; }
.status-badge.ready { background: #e0f2fe; color: #0284C7; }
.status-badge.fulfilled { background: #effaf5; color: #059669; }
.status-badge.pending { background: #fee2e2; color: #dc2626; }
.status-badge.draft { background: #f3f4f6; color: #4b5563; }

/* Mini Metrics Widget */
.metrics-grid-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Support 4 columns for metrics when needed */
.metrics-grid-mini.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.metric-card-mini {
  background: #FFFFFF;
  border: 1px solid #B3E5FC;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(5, 68, 94, 0.04);
  transition: all 0.2s ease;
}

.metric-card-mini:hover {
  box-shadow: 0 6px 16px rgba(24, 154, 180, 0.12);
  border-color: #75E6DA;
}

.metric-card-mini .lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.25rem;
}

.metric-card-mini .val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #05445E;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.trend {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.trend.up { background: #effaf5; color: #059669; }
.trend.down { background: #fee2e2; color: #dc2626; }
.trend.neutral { color: #718096; }

/* Progress Yards / Capacities */
.inventory-yards {
  background: #FFFFFF;
  border: 1px solid #B3E5FC;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(5, 68, 94, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.yard-stock-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.yard-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
}

.yard-name { color: #05445E; }
.yard-cap { color: #718096; }

.progress-bar {
  width: 100%;
  height: 6px;
  background: #E6F7F4;
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #189AB4 0%, #75E6DA 100%);
  border-radius: 100px;
}

.rating-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.rating-badge.green { background: #effaf5; color: #059669; }
.rating-badge.yellow { background: #fef3c7; color: #d97706; }

/* Analytics Charts Mockup */
.analytics-charts {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.chart-box {
  background: #FFFFFF;
  border: 1px solid #B3E5FC;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(5, 68, 94, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #05445E;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  display: block;
}

.mock-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 110px;
  padding-top: 0.5rem;
}

.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}

.bar-fill {
  width: 18px;
  background: linear-gradient(180deg, #189AB4 0%, #75E6DA 100%);
  border-radius: 3px 3px 0 0;
  margin-bottom: 0.4rem;
  transition: height 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bar-col span {
  font-size: 0.65rem;
  color: #718096;
  font-weight: 600;
}

.mock-donut-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 100%;
}

.donut-visual {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(#05445E 0% 55%, #189AB4 55% 85%, #75E6DA 85% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.donut-center {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donut-val { font-size: 0.85rem; font-weight: 800; color: #05445E; }
.donut-lbl { font-size: 0.6rem; color: #718096; font-weight: 600; }

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: #4A5568;
  font-weight: 600;
}

.legend-dot { width: 6px; height: 6px; border-radius: 50%; }
.legend-dot.v1 { background: #05445E; }
.legend-dot.v2 { background: #189AB4; }
.legend-dot.v3 { background: #75E6DA; }

/* GPS Transit Map Mockup */
.gps-map-container {
  background: #E6F7F4;
  border: 1px solid #B3E5FC;
  border-radius: 12px;
  height: 180px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(5, 68, 94, 0.05);
}

.gps-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(24, 154, 180, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(24, 154, 180, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.gps-road {
  position: absolute;
  background: #FFFFFF;
  border: 2px solid #a5d8dd;
}

.gps-truck-pin {
  position: absolute;
  background: #05445E;
  color: #FFFFFF;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 8px rgba(5, 68, 94, 0.2);
  transform: translate(-50%, -50%);
  animation: gpsPulse 2s infinite;
}

.gps-truck-pin i {
  color: #75E6DA;
}

.gps-location-pin {
  position: absolute;
  color: #dc2626;
  font-size: 1rem;
  transform: translate(-50%, -100%);
}

@keyframes gpsPulse {
  0% { box-shadow: 0 0 0 0 rgba(5, 68, 94, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(5, 68, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 68, 94, 0); }
}

/* Modifier for static image dashboard previews (maintains perfect scaling) */
.dashboard-mockup.static-preview {
  height: auto;
}
.dashboard-mockup.static-preview .mock-image-container {
  height: auto;
  display: block;
}
.dashboard-mockup.static-preview .mock-dashboard-img {
  height: auto;
  width: 100%;
  display: block;
}

/* --------------------------------------------------------------------------
   8. Features Grid & Grid Panels
   -------------------------------------------------------------------------- */
.features {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.03), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background-color: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-secondary);
  margin-bottom: 1.8rem;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}

.feature-card:hover .feature-icon {
  color: var(--color-primary);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.05);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 0.85rem;
}

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

/* --------------------------------------------------------------------------
   8a. Analytics Suite & AI BI Dashboards
   -------------------------------------------------------------------------- */
.analytics-suite-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.analytics-suite-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.analytics-suite-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  background-color: var(--bg-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(139, 92, 246, 0.1);
}

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

.card-icon-header i {
  font-size: 1.8rem;
  color: var(--color-secondary);
}

.analytics-suite-card:hover .card-icon-header i {
  color: var(--color-primary);
}

.metrics-tag {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
  border: 1px solid rgba(6, 182, 212, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.analytics-suite-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 0.75rem;
}

.analytics-suite-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-tracked-items {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
  line-height: 1.4;
}

.card-tracked-items span {
  font-weight: 600;
  color: var(--color-primary);
}

@media (min-width: 1025px) {
  .analytics-suite-grid .analytics-suite-card:nth-child(7) {
    grid-column: span 3;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .analytics-suite-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .analytics-suite-grid .analytics-suite-card:nth-child(7) {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .analytics-suite-grid {
    grid-template-columns: 1fr;
  }
  .analytics-suite-grid .analytics-suite-card:nth-child(7) {
    grid-column: span 1;
    max-width: none;
  }
}

/* --------------------------------------------------------------------------
   8b. Integrations & Ecosystem
   -------------------------------------------------------------------------- */
.integrations {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.integration-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  flex: 0 1 calc(33.333% - 2rem);
  min-width: 280px;
  max-width: 360px;
}

.integration-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background-color: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.integration-logo-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
}

.integration-logo-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 15px transparent;
  transition: var(--transition-smooth);
}

/* Custom glows per integration */
.integration-card.whatsapp:hover .integration-logo-wrapper {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.05);
}
.integration-card.whatsapp:hover .integration-logo-wrapper::after {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.integration-card.email:hover .integration-logo-wrapper {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.05);
}
.integration-card.email:hover .integration-logo-wrapper::after {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.integration-card.tally:hover .integration-logo-wrapper {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.05);
}
.integration-card.tally:hover .integration-logo-wrapper::after {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.integration-card.excel:hover .integration-logo-wrapper {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.05);
}
.integration-card.excel:hover .integration-logo-wrapper::after {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.integration-card.aws:hover .integration-logo-wrapper {
  border-color: rgba(255, 153, 0, 0.4);
  background: rgba(255, 153, 0, 0.05);
}
.integration-card.aws:hover .integration-logo-wrapper::after {
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.3);
}

.integration-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 0.75rem;
}

.integration-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.integration-svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  transition: var(--transition-smooth);
}

.whatsapp .integration-svg { color: #25D366; }
.email .integration-svg { color: #8B5CF6; }
.tally .integration-svg { color: #F59E0B; }
.excel .integration-svg { color: #10B981; }
.aws .integration-svg { color: #FF9900; }

@media (max-width: 1024px) {
  .integration-card {
    flex: 0 1 calc(50% - 2rem);
  }
}

@media (max-width: 600px) {
  .integration-card {
    flex: 0 1 100%;
  }
}

  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8c. AI-Enabled Monthly Reports & Floating Animations
   -------------------------------------------------------------------------- */
.ai-reports-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.ai-reports-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.ai-reports-text-col {
  display: flex;
  flex-direction: column;
}

.ai-reports-text-col h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-pure-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.ai-reports-text-col p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ai-reports-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ai-reports-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ai-reports-bullets li i {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-top: 0.15rem;
  padding: 0.3rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.ai-reports-bullets h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 0.25rem;
}

.ai-reports-bullets p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* AI Report Document Mockup */
.ai-reports-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-report-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.ai-report-document {
  background: linear-gradient(135deg, rgba(20, 24, 48, 0.8) 0%, rgba(10, 12, 26, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: var(--text-pure-white);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

.ai-badge i {
  color: var(--color-secondary);
  animation: pulseBrain 2s infinite;
}

@keyframes pulseBrain {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.report-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.report-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-pure-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

/* Typing AI Box */
.ai-insights-box {
  background: rgba(139, 92, 246, 0.03);
  border: 1px dashed rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.8rem;
  position: relative;
}

.ai-insights-box::before {
  content: 'AI ANALYST';
  position: absolute;
  top: -8px;
  left: 15px;
  font-size: 0.6rem;
  font-weight: 800;
  background: #111328;
  padding: 0 6px;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 4px;
}

.ai-insight-text {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.5;
  margin: 0;
}

.ai-typing-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--color-secondary);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Metric Rows inside Report */
.report-metrics-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.report-metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1rem;
  border-radius: 10px;
  text-align: left;
}

.report-metric-card .lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

.report-metric-card .val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-top: 0.2rem;
}

.report-progress-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.report-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.report-progress-label span:nth-child(2) {
  color: var(--color-accent);
  font-weight: 600;
}

/* 3D Layered Floating Widgets (Premium Animation like steep.app) */
.float-widget {
  position: absolute;
  z-index: 3;
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: float 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.widget-tonnage {
  background: rgba(8, 14, 30, 0.85);
  border-left: 3px solid var(--color-secondary);
  top: 15%;
  right: -25px;
  animation-delay: 0s;
}

.widget-alert {
  background: rgba(18, 10, 16, 0.85);
  border-left: 3px solid var(--color-error);
  bottom: 20%;
  left: -35px;
  animation-delay: 3s;
}

.widget-success {
  background: rgba(8, 18, 15, 0.85);
  border-left: 3px solid var(--color-accent);
  bottom: 5%;
  right: -15px;
  animation-delay: 1.5s;
}

.float-widget span:first-of-type {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

.float-widget span:last-of-type {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-pure-white);
  display: block;
}

.float-widget i {
  font-size: 1.2rem;
}

.widget-tonnage i { color: var(--color-secondary); }
.widget-alert i { color: var(--color-error); }
.widget-success i { color: var(--color-accent); }

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@media (max-width: 1024px) {
  .ai-reports-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .ai-reports-text-col {
    text-align: center;
  }
  
  .ai-reports-bullets {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .float-widget {
    display: none; /* Hide float widgets on tablet/mobile to keep it clean */
  }
}

/* --------------------------------------------------------------------------
   9. Live Sandbox & Registration Form
   -------------------------------------------------------------------------- */
.sandbox-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.sandbox-card {
  background: linear-gradient(135deg, rgba(16, 18, 35, 0.8) 0%, rgba(8, 10, 20, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

.sandbox-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
  border: 1px solid rgba(6, 182, 212, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sandbox-info h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-pure-white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.sandbox-info p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.sandbox-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sandbox-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.sandbox-checklist li i {
  color: var(--color-accent);
  font-size: 1.1rem;
}

/* Form Styles */
.sandbox-form-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sandbox-form {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 16px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.input-wrapper:focus-within {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.input-wrapper i {
  color: var(--text-dark);
  font-size: 1.2rem;
}

.input-wrapper input {
  width: 100%;
}

.input-wrapper input::placeholder {
  color: var(--text-dark);
}

.form-footer-info {
  margin-top: 1rem;
  text-align: center;
}

.form-footer-info p {
  font-size: 0.78rem;
  color: var(--text-dark);
}

/* Developer Bypass widget */
.developer-bypass {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.bypass-divider {
  font-size: 0.75rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}

.bypass-divider::before, .bypass-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
}

/* Sandbox Security Badges */
.sandbox-security-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.sec-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.sec-badge:hover {
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.2);
  color: var(--text-pure-white);
  transform: translateY(-1px);
}

.sec-badge i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   9a. Interactive ROI Calculator Section
   -------------------------------------------------------------------------- */
.roi-calculator-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.calculator-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.02);
  max-width: 1000px;
  margin: 0 auto;
}

.calc-inputs-col {
  padding: 3.5rem;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calc-outputs-col {
  padding: 3.5rem;
  background: rgba(139, 92, 246, 0.01);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

.calculator-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 0.5rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-label-row label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-pure-white);
}

.calc-val-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: background 0.3s;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  cursor: pointer;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  transition: transform 0.1s ease;
}

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

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

/* Outputs breakdown */
.losses-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.loss-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.loss-label-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.loss-label-info i {
  font-size: 1.25rem;
  color: #EF4444;
}

.loss-label-info span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-pure-white);
  display: block;
}

.loss-label-info small {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.loss-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #EF4444;
}

/* Total / Savings Box */
.total-savings-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.total-leakage {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-leakage span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.total-leakage strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #EF4444;
}

.projected-savings {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.savings-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #10B981;
}

.savings-header i {
  font-size: 1.1rem;
}

.projected-savings strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: #10B981;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.projected-savings p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.calc-cta-btn {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .calculator-card {
    grid-template-columns: 1fr;
  }
  .calc-inputs-col {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem;
  }
  .calc-outputs-col {
    padding: 2.5rem;
  }
}

/* Founder Section Styles */
.founder-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.02);
  max-width: 1000px;
  margin: 0 auto;
}

.founder-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-avatar-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 1.5rem;
}

.founder-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 2;
  position: relative;
}

.founder-avatar-accent-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(139, 92, 246, 0.4);
  animation: rotateAccent 25s linear infinite;
  z-index: 1;
}

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

.founder-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.founder-linkedin {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0077b5;
  background: rgba(0, 119, 181, 0.08);
  border: 1px solid rgba(0, 119, 181, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  transition: var(--transition-smooth);
}

.founder-linkedin:hover {
  background: rgba(0, 119, 181, 0.15);
  border-color: rgba(0, 119, 181, 0.4);
  transform: translateY(-1px);
}

.founder-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.founder-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-pure-white);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.founder-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.founder-quote {
  font-size: 1rem;
  color: var(--text-pure-white);
  font-style: italic;
  line-height: 1.6;
  border-left: 3px solid var(--color-primary);
  padding-left: 1.5rem;
  margin: 1rem 0 0;
  position: relative;
}

@media (max-width: 768px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }
}

/* --------------------------------------------------------------------------
   10. Contact Us Interface
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-col h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-pure-white);
}

.contact-info-col p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card-item:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.4);
  background-color: var(--bg-card-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.contact-card-icon.linkedin {
  color: #0077B5;
  background: rgba(0, 119, 181, 0.08);
  border-color: rgba(0, 119, 181, 0.15);
}

.contact-card-icon.email {
  color: var(--color-primary);
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.15);
}

.contact-card-icon.email-alt {
  color: var(--color-secondary);
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.15);
}

.contact-card-item:hover .contact-card-icon {
  transform: scale(1.08);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.contact-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-card-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-pure-white);
}

.contact-card-content span {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.contact-card-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Form Column */
.contact-form-col {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-col h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-pure-white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form select:invalid {
  color: var(--text-dark);
}

.contact-form select option {
  background: #0b1120;
  color: var(--text-main);
}

.contact-form select option[disabled] {
  color: var(--text-dark);
}

.contact-form select:focus {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-pure-white);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
  resize: none;
}

.contact-form textarea:focus {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-glow);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-form-col {
    padding: 2.5rem;
  }
  .form-row-dual {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   11. Footer Elements
   -------------------------------------------------------------------------- */
.footer {
  background: #040508;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 2;
}

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

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

.footer-logo {
  font-size: 1.6rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-links-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-pure-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links-col a:hover {
  color: var(--text-pure-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   12. OTP Verification Modal (Overlay & Card)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 5, 8, 0.8);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: none; /* Controlled by JS */
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: linear-gradient(135deg, #0e111d 0%, #080a12 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  padding: 3rem;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-pure-white);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 0.6rem;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.highlight-email {
  color: var(--color-secondary);
  font-weight: 600;
}

/* 6-Digit OTP Inputs Group */
.otp-inputs-container {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.otp-digit-input {
  width: 52px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-pure-white);
  transition: var(--transition-smooth);
}

.otp-digit-input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.modal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.otp-timer {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.otp-timer span {
  font-weight: 600;
  color: var(--color-secondary);
}

/* Alerts inside the Modal */
.alert-box {
  display: none; /* Controlled by JS */
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-bottom: 1.8rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.alert-box i {
  font-size: 1.1rem;
  margin-top: 0.05rem;
}

.error-alert {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.success-alert {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #34d399;
}

/* --------------------------------------------------------------------------
   13. Responsive Media Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .sandbox-card {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Navbar adjustments */
  .nav-links, .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding: 8rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  /* Mockup adjustments */
  .dashboard-mockup {
    height: 500px;
  }
  
  .mock-sidebar {
    display: none; /* Hide sidebar in mobile mockup to save space */
  }
  
  .metrics-grid-mini {
    grid-template-columns: 1fr;
  }
  
  .analytics-charts {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .modal-card {
    padding: 2rem;
  }
  
  .otp-digit-input {
    width: 42px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* --------------------------------------------------------------------------
   12. Custom Tour Cursor
   -------------------------------------------------------------------------- */
.custom-tour-cursor {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: rgba(139, 92, 246, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.45), 0 0 0 1px rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  transition: opacity 0.15s ease;
}

.custom-tour-cursor .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Hide system cursor on mockup when custom cursor is active */
.dashboard-mockup.custom-cursor-active,
.dashboard-mockup.custom-cursor-active * {
  cursor: none !important;
}

/* Disable custom cursor on mobile devices */
@media (max-width: 1024px) {
  .custom-tour-cursor {
    display: none !important;
  }
  .dashboard-mockup.custom-cursor-active,
  .dashboard-mockup.custom-cursor-active * {
    cursor: auto !important;
  }
}

/* Responsive utility classes */
@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  
  /* Hide interactive tour on mobile screens to prevent half-working/cramped view */
  #demo-dashboard {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   14. Trust Logos & Testimonials Sections
   -------------------------------------------------------------------------- */
.trust-logos-section {
  padding: 3rem 0;
  background: rgba(4, 5, 8, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.logos-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem 5rem;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.logos-grid:hover {
  opacity: 0.85;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  filter: grayscale(1);
  transition: filter 0.3s ease, color 0.3s ease;
  user-select: none;
}

.logo-item:hover {
  filter: grayscale(0);
  color: var(--text-pure-white);
}

.logo-item i {
  color: var(--color-primary);
  font-size: 1.4rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 154, 180, 0.2);
  box-shadow: 0 15px 40px rgba(24, 154, 180, 0.03);
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  font-family: serif;
  color: rgba(24, 154, 180, 0.15);
  position: absolute;
  top: -2.2rem;
  left: -1rem;
}

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

.profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #050811;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.profile-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 0.2rem;
}

.profile-info span {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 600;
}

.testimonial-rating {
  margin-left: auto;
  color: #fbbf24;
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
}

/* --------------------------------------------------------------------------
   15. Pricing Section
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Pricing Toggle Switch */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0 0;
}

.toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.toggle-label.active {
  color: var(--text-pure-white);
  font-weight: 600;
}

.save-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  margin-left: 0.25rem;
  vertical-align: middle;
}

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

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

.pricing-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: .3s;
  border-radius: 34px;
}

.pricing-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-pure-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: .3s;
  border-radius: 50%;
}

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

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

/* Pricing Footer Notes */
.pricing-footer-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-footer-notes .note-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-footer-notes .note-item i {
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.pricing-footer-notes .note-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .pricing-footer-notes {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .pricing-footer-notes .note-divider {
    display: none;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.popular {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(24, 154, 180, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 20px 50px rgba(24, 154, 180, 0.05);
}

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-primary);
  color: #050811;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.pricing-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 0.5rem;
}

.pricing-header p {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-pure-white);
}

.pricing-price .amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-pure-white);
  letter-spacing: -0.03em;
}

.pricing-price .period {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 600;
  margin-left: 0.25rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.4;
}

.pricing-features li i {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-top: 0.15rem;
}

.pricing-features li.disabled {
  color: #475569;
  text-decoration: line-through;
}

.pricing-features li.disabled i {
  color: #475569;
}

/* --------------------------------------------------------------------------
   16. Security Modal
   -------------------------------------------------------------------------- */
.security-modal-card {
  max-width: 680px;
  width: 90%;
  padding: 3rem;
}

.modal-icon-badge.security {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.security-modal-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin: 2rem 0 1.5rem;
  padding-bottom: 0.5rem;
}

.sec-tab-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.sec-tab-btn:hover {
  color: var(--text-pure-white);
  background: rgba(255, 255, 255, 0.02);
}

.sec-tab-btn.active {
  color: var(--text-pure-white);
  background: rgba(24, 154, 180, 0.1);
  border: 1px solid rgba(24, 154, 180, 0.15);
}

.security-modal-panes {
  min-height: 220px;
}

.sec-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.sec-pane.active {
  display: block;
}

.sec-pane h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 0.75rem;
}

.sec-pane p {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.sec-pane ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sec-pane li {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.sec-pane li strong {
  color: var(--text-pure-white);
}

.sec-pane li::before {
  content: "•";
  color: var(--color-primary);
  font-weight: bold;
  margin-right: 0.25rem;
}

/* RBAC Matrix Table styling */
.rbac-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.rbac-table th, .rbac-table td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.rbac-table th {
  color: var(--text-pure-white);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.01);
}

.rbac-table td {
  color: var(--text-main);
}

.rbac-table td.allowed {
  color: #34d399;
  font-weight: 600;
}

.rbac-table td.denied {
  color: #f87171;
  font-weight: 600;
}

/* CTA styling adjustments */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link-login {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-link-login:hover {
  color: var(--text-pure-white);
}

/* Accessibility tweaks for contrast */
.text-dark-enhanced {
  color: #94a3b8 !important; /* Muted text darkened for enhanced contrast */
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 4rem auto 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 4rem auto 0;
  }
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 1.2rem;
  }
  .nav-links a {
    font-size: 0.88rem;
  }
  .navbar-container {
    padding: 0 1.25rem;
  }
  .logo {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

