.productsPage {
  padding-top: 100px;
}

.prodIntro {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 60px;
}

.prodIntro h1 {
  margin-bottom: 20px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featuresGrid {
  margin-bottom: 80px;
}

.featureCard {
  padding: 30px;
  height: 100%;
}

.featureIcon {
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.featureTitle {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.featureText {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* Demo Section */
.demoSection {
  background-color: var(--bg-light);
  padding: 100px 0;
  position: relative;
}

.demoSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

.demoSection::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand-reverse);
}

.demoTitle {
  text-align: center;
  margin-bottom: 50px;
}

.demoTitle h2 {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demoGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.demoSidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.demoTab {
  padding: 20px;
  cursor: pointer;
  border-left: 3px solid transparent;
  text-align: left;
  transition: var(--transition-normal);
}

.demoTabActive {
  border-left-color: var(--brand-pink) !important;
  background: rgba(240, 45, 98, 0.06) !important;
}

.demoTabTitle {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.demoTabActive .demoTabTitle {
  color: var(--accent-cyan);
}

.demoTabDesc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  opacity: 0.7;
  word-break: break-word;
  overflow-wrap: break-word;
}

.demoTabActive .demoTabDesc {
  opacity: 1;
}

/* Demo Content Panel */
.demoContentPanel {
  min-height: 400px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* Map Simulator */
.mapSimulator {
  background-color: #061122;
  border-radius: var(--border-radius-md);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mapTitle {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.mapVisual {
  height: 180px;
  background: radial-gradient(circle at center, #172a45 10%, #061122 80%);
  border-radius: var(--border-radius-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulsePoint {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(240, 45, 98, 0.7); }
  70%  { transform: scale(1.2); opacity: 0.9; box-shadow: 0 0 0 10px rgba(240, 45, 98, 0); }
  100% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(240, 45, 98, 0); }
}

.leadList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.leadRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.02);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.leadStatus {
  color: var(--accent-cyan);
  font-weight: 600;
  font-family: var(--font-mono);
}

/* Chat Simulator */
.chatSimulator {
  background-color: #061122;
  border-radius: var(--border-radius-md);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  justify-content: space-between;
  gap: 12px;
}

.chatMessages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatMsg {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  max-width: 80%;
  line-height: 1.5;
}

.chatMsgAgent {
  background: rgba(23, 42, 69, 0.7);
  color: var(--text-primary);
  align-self: flex-start;
}

.chatMsgLead {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald);
  align-self: flex-end;
}

/* Kanban Simulator */
.kanbanSimulator {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background-color: #061122;
  border-radius: var(--border-radius-md);
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.kanbanCol {
  background: rgba(10, 25, 47, 0.5);
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  min-height: 100px;
}

.kanbanColTitle {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: bold;
}

.kanbanCard {
  background: var(--bg-tertiary);
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(0, 240, 255, 0.1);
  font-size: 0.75rem;
  margin-bottom: 8px;
  animation: slideIn 0.3s ease-out;
}

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

/* Tech Section */
.techSection {
  padding: 100px 0;
}

.techTitle {
  text-align: center;
  margin-bottom: 50px;
}

.techTitle h2 {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
