/*
 * =====================================================================
 * AutoSuperBrain — AI Income Agent Systems — Quantum Command Deck
 * Production CSS — Complete Rewrite v8.5-final
 * Dark sci-fi aesthetic: neon green (#00ffba), cyan (#00bfff),
 * deep space background (#050c17).
 * =====================================================================
 */

/* ==========================================================================
   1. ROOT VARIABLES
   ========================================================================== */

:root {
  --bg-color: #050c17;
  --primary-color: #00ffba;
  --secondary-color: #00bfff;
  --tertiary-color: #7a3fc4;
  --text-color: #f4faff;
  --text-secondary-color: #B5C2D3;
  --border-color: rgba(0, 255, 186, 0.35);
  --panel-bg: rgba(20, 30, 50, 0.7);
}

/* ==========================================================================
   2. GLOBAL RESET & BASE
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.ai-income-advanced {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  background-color: var(--bg-color) !important;
  color: var(--text-color) !important;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   3. THEME HIDING — Surgical Astra / Generic WP Override
   Kill headers, footers, breadcrumbs, sidebars, navigation, page titles.
   ========================================================================== */

body.ai-income-advanced .site-header,
body.ai-income-advanced #masthead,
body.ai-income-advanced .main-header-bar,
body.ai-income-advanced .ast-primary-header-bar,
body.ai-income-advanced .ast-above-header-bar,
body.ai-income-advanced .ast-below-header-bar,
body.ai-income-advanced .ast-main-header-bar-alignment,
body.ai-income-advanced .site-footer,
body.ai-income-advanced #colophon,
body.ai-income-advanced .ast-footer-overlay,
body.ai-income-advanced .ast-small-footer,
body.ai-income-advanced .ast-footer-copyright,
body.ai-income-advanced .ast-footer-inner-wrap,
body.ai-income-advanced footer.site-footer,
body.ai-income-advanced footer#colophon,
body.ai-income-advanced .page-header,
body.ai-income-advanced .entry-header,
body.ai-income-advanced .page-title,
body.ai-income-advanced .entry-title,
body.ai-income-advanced .ast-breadcrumbs-wrapper,
body.ai-income-advanced .breadcrumbs,
body.ai-income-advanced .site-navigation,
body.ai-income-advanced #sidebar,
body.ai-income-advanced .widget-area,
body.ai-income-advanced .ast-header-break-point .ast-mobile-header-wrap,
body.ai-income-advanced .ast-mobile-popup-drawer {
  display: none !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  opacity: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  min-height: 0 !important;
}

/* Force site wrapper and content containers to full width, no padding */
body.ai-income-advanced #page,
body.ai-income-advanced .site,
body.ai-income-advanced .site-content,
body.ai-income-advanced .site-content .ast-container,
body.ai-income-advanced .ast-container,
body.ai-income-advanced #primary,
body.ai-income-advanced #main,
body.ai-income-advanced .entry-content,
body.ai-income-advanced .ast-single-post,
body.ai-income-advanced .ast-page-builder-template,
body.ai-income-advanced article {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* ==========================================================================
   4. TYPOGRAPHY BASE
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
}

body.ai-income-advanced h1,
body.ai-income-advanced h2,
body.ai-income-advanced h3,
body.ai-income-advanced h4,
body.ai-income-advanced h5,
body.ai-income-advanced h6 {
  color: var(--text-color) !important;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary-color);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   5. LAYOUT — Container & Section
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
  letter-spacing: -0.3px;
}

/* Neon text utility for gradient headings */
.neon-text {
  color: var(--primary-color);
  text-shadow: none;
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-width: 180px;
  font-size: 1rem;
  line-height: 1.4;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #0a0f24;
  box-shadow: 0 0 20px rgba(0, 255, 186, 0.3);
  border: none;
  isolation: isolate;
}

/* Sweep shine effect */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 125%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 255, 186, 0.45);
}

.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #0a0f24;
  box-shadow: 0 6px 30px rgba(0, 255, 186, 0.45);
  transform: translateY(-3px);
}

/* ==========================================================================
   7. HERO SECTION — Quantum Command Deck
   ========================================================================== */

.hero {
  position: relative;
  background-color: #040912;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(0, 255, 186, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 191, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(122, 63, 196, 0.05) 0%, transparent 60%);
  overflow: hidden;
  padding: 80px 0 80px 0;
  border-bottom: 1px solid rgba(0, 255, 186, 0.15);
}

/* Perspective Grid Backplate */
.grid-backplate {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, rgba(0, 255, 186, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 255, 186, 0.03) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

.starfield-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black, transparent 70%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Hero flex wrapper */
.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1 1 500px;
  max-width: 620px;
}

/* Premium Sci-fi Badge */
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 255, 186, 0.06);
  border: 1px solid rgba(0, 255, 186, 0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 255, 186, 0.05);
}

.premium-badge.mini {
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}

.premium-badge.mini .badge-text {
  font-size: 0.65rem;
}

.premium-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--primary-color);
  animation: badge-pulse 1.8s infinite ease-in-out;
}

.premium-badge .badge-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--primary-color);
  text-shadow: 0 0 4px rgba(0, 255, 186, 0.3);
}

/* Hero headline */
.hero-content h1.neon-text {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-content h1.neon-text .highlight-neon {
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 10px rgba(0, 255, 186, 0.35));
}

.hero-subheadline {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--text-secondary-color);
  max-width: 580px;
  line-height: 1.6;
  font-weight: 400;
}

/* Hero bullet list */
.hero-bullets {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  line-height: 1.4;
}

.hero-bullets li span {
  color: #ffffff;
  font-weight: 600;
}

.hero-bullets li::before {
  content: '⚡';
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Stats grid panels */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
  max-width: 500px;
}

.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(0, 255, 186, 0.15);
  border-radius: 8px;
  background: rgba(10, 20, 35, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.hero-stats .stat-item:hover {
  border-color: rgba(0, 255, 186, 0.4);
  box-shadow: 0 0 15px rgba(0, 255, 186, 0.1);
}

.hero-stats .stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Courier New', Courier, monospace;
}

.hero-stats .stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary-color);
  margin-top: 0.15rem;
  font-weight: 500;
}

/* CTA elements */
.hero-cta-wrapper {
  margin-top: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.hero-cta .price-label {
  font-size: 0.95rem;
  font-weight: normal;
  margin-left: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  color: var(--primary-color);
  border: 1px solid rgba(0, 255, 186, 0.2);
}

.micro-trust-line {
  font-size: 0.78rem;
  color: var(--text-secondary-color);
  opacity: 0.85;
  margin-top: 0.75rem;
  letter-spacing: 0.3px;
}

/* Hero Image and Scifi Command Deck Viewport */
.hero-image-wrapper {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.command-panel-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 186, 0.25);
  background: rgba(7, 15, 30, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.5),
    inset 0 0 25px rgba(0, 255, 186, 0.1);
  isolation: isolate;
}

.command-panel-frame .hologram-core-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  filter: drop-shadow(0 0 15px rgba(0, 255, 186, 0.15));
  transition: transform 0.5s ease;
}

.command-panel-frame:hover .hologram-core-img {
  transform: scale(1.02);
}

/* Corner HUD Brackets */
.corner-indicator {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--primary-color);
  pointer-events: none;
  z-index: 10;
}

.corner-indicator.top-left { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.corner-indicator.top-right { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.corner-indicator.bottom-left { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.corner-indicator.bottom-right { bottom: -2px; right: -2px; border-left: none; border-top: none; }

/* Glowing Overlay Backlight */
.panel-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 255, 186, 0.12), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

/* Floating HUD Glass Cards */
.floating-hud {
  position: absolute;
  background: rgba(10, 25, 45, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 186, 0.25);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(0, 255, 186, 0.1);
  z-index: 5;
  pointer-events: none;
}

.floating-hud.hud-card-1 {
  top: 15%;
  left: -20px;
  animation: hud-float-y 6s infinite ease-in-out;
}

.floating-hud.hud-card-2 {
  bottom: 12%;
  right: -20px;
  animation: hud-float-y-reverse 7s infinite ease-in-out;
}

.floating-hud .hud-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--secondary-color);
  flex-shrink: 0;
}

.floating-hud .hud-indicator.active {
  background-color: var(--primary-color);
  box-shadow: 0 0 6px var(--primary-color);
  animation: badge-pulse 1.2s infinite ease-in-out;
}

.floating-hud .hud-info {
  display: flex;
  flex-direction: column;
}

.floating-hud .hud-label {
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  color: var(--text-secondary-color);
  text-transform: uppercase;
  font-weight: 600;
}

.floating-hud .hud-val {
  font-size: 0.75rem;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   8. TRUST STRIP
   ========================================================================== */

.trust-strip {
  background: rgba(10, 20, 40, 0.8);
  border-top: 1px solid rgba(0, 255, 186, 0.15);
  border-bottom: 1px solid rgba(0, 255, 186, 0.15);
  padding: 15px 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary-color);
  padding: 0.5rem;
}

.trust-item .emoji {
  font-size: 1.2rem;
}

/* ==========================================================================
   8.5 VIDEO SECTION
   ========================================================================== */

.video-section {
  background: linear-gradient(180deg, rgba(0, 255, 186, 0.02) 0%, rgba(0, 191, 255, 0.02) 100%);
  border-bottom: 1px solid rgba(0, 255, 186, 0.15);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.video-player-side {
  position: relative;
}

.video-frame-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(10, 20, 40, 0.85);
  border: 1px solid rgba(0, 255, 186, 0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    0 0 30px rgba(0, 255, 186, 0.1),
    0 20px 45px rgba(0, 0, 0, 0.5);
}

.video-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(0, 255, 186, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.corner-indicator {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--primary-color);
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}

.corner-indicator.top-left {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}

.corner-indicator.top-right {
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
}

.corner-indicator.bottom-left {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 2px 2px;
}

.corner-indicator.bottom-right {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}

.asb-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  cursor: pointer;
  padding: 2rem;
  text-align: center;
}

.video-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 255, 186, 0.1);
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(0, 255, 186, 0.25);
  transition: all 0.3s ease;
}

.asb-video-placeholder:hover .video-icon-circle {
  transform: scale(1.1);
  background: rgba(0, 255, 186, 0.2);
  box-shadow: 0 0 30px rgba(0, 255, 186, 0.4);
}
.asb-video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
}
.asb-video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 255, 186, 0.15);
}


.play-icon {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-left: 5px;
}

.video-placeholder-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.video-placeholder-sub {
  font-size: 0.82rem;
  color: var(--text-secondary-color);
}

.video-copy-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.video-subheadline {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 1.75rem;
}

.video-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  width: 100%;
}

.video-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary-color);
}

.bullet-icon {
  color: var(--primary-color);
  font-size: 1.1rem;
  line-height: 1.2;
}

.video-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  width: 100%;
}

.video-micro-trust {
  font-size: 0.78rem;
  color: #AAB7C8;
}

/* ==========================================================================
   9. PROBLEM / PAIN SECTION
   ========================================================================== */

.problem {
  background: linear-gradient(180deg, rgba(0, 255, 186, 0.04), rgba(0, 191, 255, 0.04));
  text-align: center;
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
}

.problem ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.problem ul li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.problem ul li::before {
  content: '•';
  color: var(--primary-color);
  flex-shrink: 0;
}

/* ==========================================================================
   10. SOLUTION / HOW IT WORKS SECTION
   ========================================================================== */

.solution {
  background: linear-gradient(180deg, rgba(0, 191, 255, 0.05), rgba(122, 63, 196, 0.05));
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.solution-card {
  background: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 255, 186, 0.25);
}

.solution-card .icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.solution-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--primary-color);
}

.solution-card p {
  font-size: 0.9rem;
  color: var(--text-secondary-color);
}

/* ==========================================================================
   11. DASHBOARD / BRAIN MANAGER SECTION
   ========================================================================== */

.dashboard {
  background-color: #050c17;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(0, 255, 186, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(122, 63, 196, 0.05) 0%, transparent 45%);
  border-bottom: 1px solid rgba(0, 255, 186, 0.1);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dashboard-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.dashboard-text-side {
  flex: 1 1 500px;
  max-width: 580px;
}

.dashboard-main-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.dashboard-description {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--text-secondary-color);
}

.cockpit-widgets {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.widget-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(0, 255, 186, 0.03);
  border: 1px solid rgba(0, 255, 186, 0.1);
  border-radius: 8px;
  padding: 1rem;
  transition: border-color 0.3s;
}

.widget-row:hover {
  border-color: rgba(0, 255, 186, 0.25);
}

.widget-bullet-icon {
  font-size: 1.2rem;
  color: var(--primary-color);
  text-shadow: 0 0 5px rgba(0, 255, 186, 0.5);
  background: rgba(0, 255, 186, 0.08);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.widget-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.widget-title-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.widget-desc-text {
  font-size: 0.85rem;
  color: var(--text-secondary-color);
  line-height: 1.4;
}

/* Dashboard Visual HUD side */
.dashboard-visual-side {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  position: relative;
}

.cockpit-outer-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: rgba(7, 15, 30, 0.7);
  border: 1px solid rgba(0, 255, 186, 0.2);
  border-radius: 10px;
  padding: 8px;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(0, 255, 186, 0.08);
}

.cockpit-header-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(5, 10, 20, 0.6);
  padding: 0.4rem 0.8rem;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid rgba(0, 255, 186, 0.15);
  margin-bottom: 8px;
}

.cockpit-header-bar .window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.cockpit-header-bar .window-dot.red    { background-color: #ff5f56; }
.cockpit-header-bar .window-dot.yellow { background-color: #ffbd2e; }
.cockpit-header-bar .window-dot.green  { background-color: #27c93f; }

.cockpit-header-bar .window-title {
  font-family: monospace;
  font-size: 0.68rem;
  color: var(--text-secondary-color);
  margin-left: 0.6rem;
  letter-spacing: 0.5px;
}

.cockpit-img-container {
  overflow: hidden;
  border-radius: 0 0 6px 6px;
  position: relative;
}

.cockpit-dashboard-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
  transition: transform 0.4s ease;
}

.cockpit-outer-frame:hover .cockpit-dashboard-image {
  transform: scale(1.015);
  opacity: 0.95;
}

/* Corner Bracket Accents */
.corner-bracket {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--primary-color);
  pointer-events: none;
  z-index: 10;
}

.corner-bracket.top-left     { top: -2px;    left: -2px;  border-right: none; border-bottom: none; }
.corner-bracket.top-right    { top: -2px;    right: -2px; border-left: none;  border-bottom: none; }
.corner-bracket.bottom-left  { bottom: -2px; left: -2px;  border-right: none; border-top: none;    }
.corner-bracket.bottom-right { bottom: -2px; right: -2px; border-left: none;  border-top: none;    }

/* Dashboard HUD layers */
.hud-layer {
  position: absolute;
  background: rgba(6, 12, 24, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 186, 0.25);
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 5;
  pointer-events: none;
}

.hud-layer .hud-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 255, 186, 0.15);
  padding: 0.35rem 0.6rem;
  background: rgba(0, 255, 186, 0.04);
}

.hud-layer .hud-card-title {
  font-size: 0.58rem;
  font-family: monospace;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* System Terminal Overlay */
.system-logs-terminal {
  width: 250px;
  bottom: -35px;
  left: -20px;
  animation: hud-float-y 6.5s infinite ease-in-out;
}

.status-indicator-live {
  font-size: 0.52rem;
  font-weight: 700;
  background: rgba(0, 255, 186, 0.15);
  color: var(--primary-color);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
}

.terminal-body-log {
  padding: 0.5rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.65rem;
  line-height: 1.4;
  color: #c4d1db;
  max-height: 110px;
  overflow: hidden;
}

.terminal-body-log .log-line {
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.85;
}

.terminal-body-log .log-time {
  color: var(--secondary-color);
}

.terminal-body-log .log-line.success {
  color: var(--primary-color);
}

.terminal-body-log .log-line-active {
  color: #ffffff;
  font-weight: 700;
}

.terminal-body-log .blink {
  animation: blink-cursor 1s infinite step-end;
}

/* Routing Pipeline Queue Overlay */
.routing-matrix-hud {
  width: 200px;
  top: 15%;
  right: -30px;
  animation: hud-float-y-reverse 5.8s infinite ease-in-out;
}

.pipeline-queue-list {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pipeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  font-size: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pipeline-item.active {
  background: rgba(0, 191, 255, 0.05);
  border-color: rgba(0, 191, 255, 0.2);
}

.pipeline-item .item-name {
  color: #ffffff;
}

.pipeline-item .item-status {
  font-weight: 700;
}

.pipeline-item .item-status.success    { color: var(--primary-color); }
.pipeline-item .item-status.processing { color: var(--secondary-color); animation: badge-pulse 1.2s infinite; }
.pipeline-item .item-status.pending    { color: var(--text-secondary-color); }

/* ==========================================================================
   12. AGENTS SECTION
   ========================================================================== */

.agents {
  background: url('../images/neon-grid-background.webp') no-repeat center / cover;
  padding: 100px 0;
}

.agents .overlay {
  background: rgba(5, 12, 23, 0.75);
  padding: 80px 0;
}

.agent-categories-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.agent-category {
  margin-bottom: 3.5rem;
}

.category-title {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--primary-color), transparent 80%) 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.agent-card {
  background: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 130px;
  display: flex;
  flex-direction: column;
}

.agent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 255, 186, 0.25);
}

.agent-card .agent-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.agent-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--primary-color);
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  line-height: 1.3;
}

.agent-card p {
  font-size: 0.85rem;
  color: var(--text-secondary-color);
  line-height: 1.5;
  flex: 1;
}

.agent-card p em {
  color: var(--primary-color);
  font-style: normal;
  font-size: 0.78rem;
  opacity: 0.9;
}

/* ==========================================================================
   13. COMPARISON TABLE SECTION
   ========================================================================== */

.comparison {
  background: linear-gradient(180deg, rgba(0, 255, 186, 0.05), rgba(0, 191, 255, 0.05));
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.85rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border: 1px solid rgba(0, 255, 186, 0.1);
  text-align: left;
}

.comparison-table th {
  background: rgba(0, 255, 186, 0.1);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.comparison-table td {
  background: rgba(10, 20, 40, 0.8);
  color: var(--text-secondary-color);
}

/* Highlight last column — AI Income Agent Systems */
.comparison-table th:last-child {
  background: rgba(0, 255, 186, 0.18) !important;
  color: #ffffff !important;
  border-left: 2px solid var(--primary-color) !important;
  border-right: 2px solid var(--primary-color) !important;
  border-top: 2px solid var(--primary-color) !important;
  text-shadow: 0 0 6px rgba(0, 255, 186, 0.3);
}

.comparison-table td:last-child {
  background: rgba(0, 255, 186, 0.06) !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  border-left: 2px solid rgba(0, 255, 186, 0.35) !important;
  border-right: 2px solid rgba(0, 255, 186, 0.35) !important;
}

.comparison-table tbody tr:last-child td:last-child {
  border-bottom: 2px solid var(--primary-color) !important;
}

.comparison-table tr:hover td {
  background: rgba(10, 20, 40, 0.95);
}

.comparison-table tr:hover td:last-child {
  background: rgba(0, 255, 186, 0.1) !important;
}

/* Mobile comparison cards — shown only on small screens */
.comparison-mobile {
  display: none;
}

.comparison-card {
  background: rgba(10, 20, 40, 0.7);
  border: 1px solid rgba(0, 255, 186, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.comparison-card-title {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 255, 186, 0.15);
  padding-bottom: 0.5rem;
}

.comparison-card-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary-color);
}

.comparison-card-row .comp-label {
  font-weight: 600;
  color: #AAB7C8;
  margin-right: 1rem;
}

.comparison-card-row.highlight-row {
  background: rgba(0, 255, 186, 0.08);
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 186, 0.25);
  color: var(--primary-color);
}

.comparison-card-row.highlight-row .comp-label {
  color: var(--primary-color);
}

/* ==========================================================================
   14. OFFER / VALUE STACK SECTION
   ========================================================================== */

.offer {
  background: linear-gradient(180deg, rgba(122, 63, 196, 0.05), rgba(0, 255, 186, 0.05));
}

.offer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.offer-img {
  flex: 1 1 480px;
  text-align: center;
}

.offer-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 186, 0.3);
}

.offer-content {
  flex: 1 1 600px;
}

.offer-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Offer stack grid layout */
.offer-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* Offer category grouping cards */
.offer-category {
  background: rgba(10, 20, 40, 0.6);
  border: 1px solid rgba(0, 255, 186, 0.15);
  border-radius: 10px;
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.offer-category:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 255, 186, 0.15);
  transform: translateY(-2px);
}

.offer-category h4 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 255, 186, 0.25);
  text-shadow: 0 0 8px rgba(0, 255, 186, 0.3);
}

.offer-list {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.offer-list li {
  margin-bottom: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-secondary-color);
  line-height: 1.6;
}

.offer-list li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ==========================================================================
   15. PRICING SECTION — Premium Price Card
   ========================================================================== */

.pricing {
  background: linear-gradient(180deg, rgba(0, 191, 255, 0.05), rgba(122, 63, 196, 0.05));
  text-align: center;
}

.price-card {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: rgba(10, 20, 40, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 186, 0.3);
  border-radius: 16px;
  box-shadow:
    0 0 30px rgba(0, 255, 186, 0.1),
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(0, 255, 186, 0.05);
  text-align: center;
}

.price-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #050c17;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(0, 255, 186, 0.3);
}

.price-original {
  font-size: 1.2rem;
  color: var(--text-secondary-color);
  text-decoration: line-through;
  opacity: 0.75;
  margin-bottom: 0.25rem;
}

.price-launch {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(0, 255, 186, 0.3);
  margin-bottom: 0.25rem;
  letter-spacing: -1px;
}

.price-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto;
  max-width: 320px;
  text-align: left;
}

.price-features li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-color);
  position: relative;
  padding-left: 1.75rem;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 800;
}

.price-disclaimer {
  font-size: 0.8rem;
  color: var(--text-secondary-color);
  opacity: 0.7;
  margin-top: 1.5rem;
}

.price-monthly-separate {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 255, 186, 0.15);
  font-size: 0.9rem;
  color: var(--text-secondary-color);
}

.price-monthly-separate strong {
  color: var(--secondary-color);
}

/* Fallback for pages using inline .price class */
.pricing .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.5rem 0 0.5rem;
  text-shadow: 0 0 20px rgba(0, 255, 186, 0.3);
}

.pricing .price-note {
  font-size: 0.9rem;
  color: var(--text-secondary-color);
  margin-bottom: 2rem;
}

/* ==========================================================================
   16. GUARANTEE SECTION
   ========================================================================== */

.guarantee {
  background: linear-gradient(180deg, rgba(122, 63, 196, 0.05), rgba(0, 255, 186, 0.05));
  text-align: center;
}

.guarantee p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   17. FAQ SECTION — Premium Accordion
   ========================================================================== */

.faq {
  background: linear-gradient(180deg, rgba(0, 255, 186, 0.05), rgba(0, 191, 255, 0.05));
}

.faq-item {
  background: var(--panel-bg);
  border: 1px solid rgba(0, 255, 186, 0.15);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  padding: 1.25rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 255, 186, 0.3);
}

.faq-item .question {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.4;
  user-select: none;
}

.faq-item .question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--secondary-color);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.open .question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-secondary-color);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0;
}

.faq-item.open .answer {
  max-height: 500px;
  margin-top: 0.75rem;
}

/* ==========================================================================
   18. FINAL CTA SECTION
   ========================================================================== */

.final-cta {
  background: linear-gradient(
    180deg,
    rgba(0, 255, 186, 0.1),
    rgba(0, 191, 255, 0.1) 50%,
    rgba(122, 63, 196, 0.08) 100%
  );
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-secondary-color);
  font-size: 1rem;
}

.legal-disclaimer {
  font-size: 0.78rem !important;
  color: var(--text-secondary-color) !important;
  max-width: 600px;
  margin: 1rem auto 0 !important;
  text-align: center;
  opacity: 0.85;
  line-height: 1.5;
}

/* ==========================================================================
   19. KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes badge-pulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

@keyframes hud-float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes hud-float-y-reverse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(12px); }
}

@keyframes blink-cursor {
  from, to { color: transparent; }
  50%      { color: var(--primary-color); }
}

@keyframes neon-border-pulse {
  0%, 100% { border-color: rgba(0, 255, 186, 0.3); box-shadow: 0 0 15px rgba(0, 255, 186, 0.1); }
  50%      { border-color: rgba(0, 255, 186, 0.55); box-shadow: 0 0 25px rgba(0, 255, 186, 0.2); }
}

/* ==========================================================================
   20. REVEAL / SCROLL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.fade-in-up,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   21. UTILITY CLASSES
   ========================================================================== */

.text-center  { text-align: center !important; }
.mt-2         { margin-top: 1rem !important; }
.mt-3         { margin-top: 1.5rem !important; }
.mb-2         { margin-bottom: 1rem !important; }
.mb-3         { margin-bottom: 1.5rem !important; }

/* ==========================================================================
   22. RESPONSIVE — Tablet (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {

  /* Section padding reduction */
  .section {
    padding: 60px 0 !important;
  }

  .hero {
    padding: 60px 0 60px 0 !important;
  }

  .dashboard {
    padding: 60px 0 !important;
  }

  .final-cta {
    padding: 60px 0 !important;
  }

  /* Hero: single column, text centered, image below */
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-content {
    max-width: 100%;
    flex-basis: 100%;
  }

  .hero-content h1.neon-text {
    font-size: 2rem;
  }

  .hero-subheadline {
    max-width: 100%;
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* Hero bullets — left aligned text, proper wrapping */
  .hero-bullets {
    text-align: left;
  }

  .hero-bullets li {
    font-size: 0.9rem;
  }

  .hero-bullets li > div {
    flex: 1;
    min-width: 0;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin: 1.5rem auto;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .micro-trust-line {
    text-align: center;
  }

  .hero-image-wrapper {
    flex-basis: 100%;
    max-width: 100%;
  }

  .command-panel-frame {
    max-width: 100%;
  }

  /* Premium badge center */
  .premium-badge {
    margin-left: auto;
    margin-right: auto;
  }

  /* ---- VIDEO SECTION: stack to single column ---- */
  .video-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .video-copy-side {
    text-align: center;
    align-items: center;
  }

  .video-copy-side .premium-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .video-copy-side h2.neon-text {
    text-align: center !important;
  }

  .video-subheadline {
    text-align: center;
  }

  .video-bullets li {
    text-align: left;
  }

  .video-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .video-cta-group .btn {
    width: 100%;
    max-width: 320px;
  }

  .video-micro-trust {
    text-align: center;
  }

  /* ---- TRUST STRIP: wrap items ---- */
  .trust-strip .container {
    gap: 0.5rem;
  }

  .trust-item {
    font-size: 0.78rem;
  }

  /* Dashboard: single column */
  .dashboard-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .dashboard-text-side {
    max-width: 100%;
    flex-basis: 100%;
  }

  .dashboard-main-title {
    font-size: 2rem;
  }

  .dashboard-visual-side {
    flex-basis: 100%;
  }

  /* Agents grid — 2 columns on tablet */
  .agents-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  /* Comparison table: hide desktop, show mobile cards */
  .comparison-table-wrapper {
    display: none !important;
  }

  .comparison-mobile {
    display: block !important;
  }

  /* Offer: single column */
  .offer-wrapper {
    flex-direction: column;
  }

  .offer-img {
    flex-basis: 100%;
  }

  .offer-content {
    flex-basis: 100%;
  }

  /* Price card full width */
  .price-card {
    max-width: 100%;
  }

  /* Section title size */
  .section-title {
    font-size: 1.8rem;
  }

  /* Solution cards */
  .solution-cards {
    grid-template-columns: 1fr;
  }

  /* HUD layers resize */
  .system-logs-terminal {
    width: 200px;
    left: -10px;
    bottom: -25px;
  }

  .routing-matrix-hud {
    width: 170px;
    right: -15px;
  }

  /* Category title */
  .category-title {
    font-size: 1.2rem;
  }

  /* Before-After section */
  .before-after-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Savings grid */
  .savings-grid {
    grid-template-columns: 1fr !important;
  }

  /* Who section */
  .who-grid {
    grid-template-columns: 1fr !important;
  }

  /* Problem bullets center align */
  .problem ul {
    text-align: left;
    max-width: 100%;
  }

  /* Global overflow protection */
  .container {
    overflow-x: hidden;
    word-break: break-word;
  }
}

/* ==========================================================================
   23. RESPONSIVE — Mobile (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {

  /* Further section padding reduction */
  .section {
    padding: 40px 0 !important;
  }

  .hero {
    padding: 40px 0 40px 0 !important;
  }

  .dashboard {
    padding: 40px 0 !important;
  }

  .final-cta {
    padding: 40px 0 !important;
  }

  /* Hero headline */
  .hero-content h1.neon-text {
    font-size: 2.0rem;
    letter-spacing: -0.3px;
  }

  .hero-subheadline {
    font-size: 0.9rem;
  }

  /* Stats: 2x2 grid on small phones for premium space-saving sci-fi look */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA buttons full width */
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    min-width: unset;
  }

  /* Hide floating HUDs on small devices */
  .floating-hud {
    display: none !important;
  }

  .system-logs-terminal,
  .routing-matrix-hud {
    display: none !important;
  }

  /* Reduce font sizes */
  .section-title {
    font-size: 1.5rem;
  }

  .dashboard-main-title {
    font-size: 1.6rem;
  }

  /* Agent grid: single column */
  .agents-grid {
    grid-template-columns: 1fr;
  }

  /* Category title */
  .category-title {
    font-size: 1rem;
  }

  /* Price card */
  .price-launch {
    font-size: 2.5rem;
  }

  .price-card {
    padding: 1.5rem;
  }

  /* FAQ */
  .faq-item {
    padding: 1rem;
  }

  .faq-item .question {
    font-size: 0.9rem;
  }

  /* Final CTA */
  .final-cta h2 {
    font-size: 1.5rem;
  }

  .final-cta p {
    font-size: 0.9rem;
  }

  /* Buttons stacking */
  .btn {
    min-width: unset;
    width: 100%;
  }

  /* Offer image */
  .offer-img img {
    max-width: 100%;
  }
}

/* ==========================================================================
   ADDITIONS: STICKY BAR, UPCOMING ROADMAP, MOBILE LEFT-ALIGN OVERRIDES
   ========================================================================== */

/* Price strike-through and discount stylings with premium Neon Red X cross-out */
.price-old {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 8px;
  font-size: 0.85em;
  padding: 0 4px;
}

.price-old::before,
.price-old::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ff3333;
  box-shadow: 0 0 6px #ff3333, 0 0 3px #ff3333;
  border-radius: 1px;
  pointer-events: none;
}

.price-old::before {
  transform: rotate(15deg);
}

.price-old::after {
  transform: rotate(-15deg);
}

.price-new {
  color: var(--primary-color);
  font-weight: bold;
}

/* Sticky Countdown Bar */
.sticky-countdown-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(5, 12, 23, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 255, 186, 0.25);
  padding: 10px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
}

body.ai-income-advanced {
  padding-top: 55px !important;
}

.countdown-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.countdown-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.countdown-badge {
  background: rgba(0, 255, 186, 0.1);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-family: 'Courier New', Courier, monospace;
}

.quantum-clock {
  font-family: 'Courier New', Courier, monospace;
  color: var(--secondary-color);
  font-weight: bold;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  text-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
}

.countdown-btn {
  background: var(--primary-color);
  color: #050c17;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 186, 0.3);
  white-space: nowrap;
}

.countdown-btn:hover {
  background: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .sticky-countdown-bar {
    padding: 8px 0;
  }
  body.ai-income-advanced {
    padding-top: 75px !important;
  }
  .countdown-bar-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .countdown-text {
    flex-direction: column;
    font-size: 0.8rem;
    gap: 5px;
  }
  .countdown-btn {
    width: 100%;
    text-align: center;
    padding: 5px 12px;
  }
}

/* Upcoming Updates Grid Layout */
.upcoming-updates {
  background-color: #040912;
  border-bottom: 1px solid rgba(0, 255, 186, 0.15);
  position: relative;
  overflow: hidden;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.upcoming-card {
  background: rgba(10, 20, 40, 0.5);
  border: 1px solid rgba(0, 255, 186, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.upcoming-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 255, 186, 0.15);
  transform: translateY(-2px);
}

.oracle-status {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.65rem;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.oracle-status.staged {
  background: rgba(0, 255, 186, 0.1);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.oracle-status.queued {
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.oracle-name {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  word-break: break-all;
  padding-right: 70px; /* Leave space for the status badge */
}

.oracle-desc {
  font-size: 0.85rem;
  color: var(--text-secondary-color);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .upcoming-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .upcoming-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   24. MOBILE CENTER ALIGNMENT OVERRIDES (MOBILE ALIGNED TO CENTER)
   ========================================================================== */
@media (max-width: 768px) {
  /* Hero Center Alignment */
  .hero-wrapper {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .hero-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .premium-badge {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .hero-content h1.neon-text {
    text-align: center !important;
  }
  
  .hero-subheadline {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .hero-bullets {
    text-align: center !important;
    padding-left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .hero-bullets li {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-bullets li div {
    text-align: center !important;
    margin: 0 auto !important;
  }
  
  .hero-stats {
    margin: 1.5rem auto !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  .hero-cta-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .hero-cta {
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.8rem !important;
  }
  
  .hero-cta .btn {
    width: 100% !important;
    max-width: none !important;
  }
  
  .micro-trust-line {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Video Section Center Alignment */
  .video-copy-side {
    text-align: center !important;
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .video-copy-side h2.neon-text {
    text-align: center !important;
  }
  
  .video-subheadline {
    text-align: center !important;
  }

  .video-bullets {
    text-align: center !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.8rem !important;
  }

  .video-bullets li {
    justify-content: center !important;
    text-align: center !important;
  }
  
  .video-cta-group {
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.8rem !important;
  }
  
  .video-cta-group .btn {
    width: 100% !important;
    max-width: none !important;
  }
  
  .video-micro-trust {
    text-align: center !important;
  }

  /* Solution & Offer Section Center Alignment */
  .solution-header-box,
  .section-title {
    text-align: center !important;
  }
  
  .solution p,
  .pricing p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .offer-content {
    text-align: center !important;
  }
  
  .offer-stack {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  .offer-category {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .offer-category h4 {
    text-align: center !important;
    width: 100% !important;
  }
  
  .offer-list {
    text-align: center !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .offer-list li {
    justify-content: center !important;
    text-align: center !important;
  }

  /* Pricing Center Alignment */
  .price-card {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .price-card .btn {
    width: 100% !important;
    max-width: none !important;
  }
  
  .price-features {
    text-align: center !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .price-features li {
    justify-content: center !important;
    text-align: center !important;
  }
  
  .price-disclaimer {
    text-align: center !important;
  }

  /* Final CTA Center Alignment */
  .final-cta {
    text-align: center !important;
  }
  
  .final-cta .container {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .final-cta h2 {
    text-align: center !important;
  }
  
  .final-cta p {
    text-align: center !important;
  }
  
  .final-cta .btn {
    width: 100% !important;
    max-width: none !important;
  }
  
  .legal-disclaimer p {
    text-align: center !important;
  }
}

/* ==========================================================================
   20. VISITOR DEMO INTEGRATION (TEASER & FLOATING PILL)
   ========================================================================== */

.demo-teaser {
  position: relative;
  background-color: #040912;
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.04) 0%, transparent 60%);
  border-top: 1px solid rgba(0, 255, 186, 0.15);
  border-bottom: 1px solid rgba(0, 255, 186, 0.15);
  overflow: hidden;
  z-index: 2;
}

.teaser-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 2rem;
}

/* Glassmorphic Mockup Window */
.mockup-window {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 186, 0.25);
  background: rgba(10, 25, 45, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 255, 186, 0.05);
  overflow: hidden;
  position: relative;
}

.mockup-header {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  background: rgba(4, 9, 18, 0.8);
  border-bottom: 1px solid rgba(0, 255, 186, 0.15);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.mockup-dots span:nth-child(1) { background-color: #ff5f56; }
.mockup-dots span:nth-child(2) { background-color: #ffbd2e; }
.mockup-dots span:nth-child(3) { background-color: #27c93f; }

.mockup-title {
  margin-left: 20px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  color: var(--text-secondary-color);
  letter-spacing: 0.5px;
}

.mockup-body {
  display: flex;
  height: 320px;
}

/* Sidebar Mock */
.mockup-sidebar {
  width: 140px;
  background: rgba(4, 9, 18, 0.4);
  border-right: 1px solid rgba(0, 255, 186, 0.1);
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-logo {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  text-align: center;
}

.sidebar-item {
  font-size: 0.7rem;
  padding: 6px 8px;
  border-radius: 4px;
  color: var(--text-secondary-color);
  cursor: pointer;
  white-space: nowrap;
}

.sidebar-item.active {
  background: rgba(0, 255, 186, 0.1);
  color: var(--primary-color);
  border-left: 2px solid var(--primary-color);
}

.sidebar-item.locked {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Main Content Mock */
.mockup-content {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.mockup-stats-row {
  display: flex;
  gap: 10px;
}

.mockup-mini-stat {
  flex: 1;
  background: rgba(4, 9, 18, 0.5);
  border: 1px solid rgba(0, 255, 186, 0.1);
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
}

.mockup-mini-stat .lbl {
  font-size: 0.55rem;
  color: var(--text-secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mockup-mini-stat .val {
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
}

.mockup-agent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mockup-agent-card {
  background: rgba(10, 25, 45, 0.8);
  border: 1px solid rgba(0, 255, 186, 0.15);
  border-radius: 6px;
  padding: 10px;
  position: relative;
}

.agent-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.agent-dot {
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 4px var(--primary-color);
}

.agent-name {
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
}

.agent-desc {
  font-size: 0.65rem;
  color: var(--text-secondary-color);
  line-height: 1.3;
}

/* Hologram scanline effect */
.hologram-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to bottom, rgba(0, 255, 186, 0) 0%, rgba(0, 255, 186, 0.15) 50%, rgba(0, 255, 186, 0) 100%);
  pointer-events: none;
  animation: scanline-move 8s infinite linear;
  z-index: 10;
}

@keyframes scanline-move {
  0% { top: -10px; }
  100% { top: 100%; }
}

/* Teaser Text Elements */
.teaser-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.teaser-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.teaser-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary-color);
}

.teaser-features li strong {
  color: #fff;
}

.teaser-features .feat-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.teaser-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.teaser-disclaimer {
  font-size: 0.75rem;
  color: var(--text-secondary-color);
  opacity: 0.75;
}

/* Pulse keyframes for demo CTA button */
.btn-demo-pulse {
  animation: demo-btn-pulse 2.5s infinite;
}

@keyframes demo-btn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 191, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 191, 255, 0); }
}

/* Floating Live Demo Trigger (Desktop Only) */
.floating-demo-pill {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(10, 25, 45, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 255, 186, 0.25), inset 0 0 15px rgba(0, 255, 186, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.floating-demo-pill.show {
  transform: translateY(0);
  opacity: 1;
}

.floating-demo-pill:hover {
  transform: scale(1.05) translateY(-3px);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.35);
}

.floating-demo-pill .pill-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-color);
  animation: badge-pulse 1.5s infinite ease-in-out;
}

.floating-demo-pill .pill-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.floating-demo-pill:hover .pill-text {
  color: var(--secondary-color);
}
.floating-demo-pill:hover .pill-dot {
  background-color: var(--secondary-color);
  box-shadow: 0 0 8px var(--secondary-color);
}


