/*
 * Nova Business Pro Solution — demo-specific styles
 * Shared layout and base styles are in /assets/css/main.css
 */

/* Business Pro uses the default blue/purple palette but with a slightly deeper,
   more polished feel to signal the premium step up from Starter */

/* Hero: deep blue radial glow */
.demo-hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(0,200,255,0.06) 0%, rgba(162,89,255,0.03) 50%, transparent 75%);
}

/* Featured badge on cards — blue accent */
.biz-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.3rem 0.8rem;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.25);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.biz-pro-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue);
  animation: pulse 2s infinite;
}

/* Automation callout box — appears in the features section */
.biz-pro-callout {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(0,200,255,0.04);
  border: 1px solid rgba(0,200,255,0.15);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 680px;
}
.biz-pro-callout strong {
  color: var(--text);
  font-weight: 500;
}

/* Timeline box override — slightly larger duration for contrast */
.demo-timeline-box {
  border-color: rgba(0,200,255,0.2);
}

/* Workflow connector line: stronger blue */
.demo-workflow-step:not(:last-child)::after {
  background: linear-gradient(180deg, rgba(0,200,255,0.4), rgba(162,89,255,0.25), transparent);
}

/* Responsive */
@media (max-width: 420px) {
  .demo-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .demo-cta-actions .btn-primary,
  .demo-cta-actions .btn-ghost {
    text-align: center;
    justify-content: center;
  }
}
