/* ============================================
   AGENTS PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Card Styles */
.hero-card-emoji {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.hero-card-title {
  margin-bottom: 1rem;
}

/* Section Headings */
.section-heading-center {
  text-align: center;
  margin-bottom: 1rem;
  color: #000;
}

.section-heading-center-white {
  text-align: center;
  margin-bottom: 1rem;
}

/* Section Descriptions */
.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #000;
}

.section-description-white {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

/* Service Cards */
.service-card {
  background: #f8f9fa;
}

.service-card-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card-title {
  color: #000;
}

.service-card-description {
  color: #333;
}

.service-card-link {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #000;
  font-weight: 600;
}

/* Grid Layout */
.grid-gap-2 {
  gap: 2rem;
}

/* Section Padding */
.section-padding-5 {
  padding: 5rem 0;
}

/* Comparison Cards */
.comparison-card {
  padding: 2.5rem;
}

.comparison-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.comparison-card-title {
  margin: 0;
  font-size: 1.8rem;
}

.comparison-card-subtitle {
  color: #000;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.comparison-card-subtitle-orange {
  color: var(--brand2);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.comparison-card-list {
  list-style: none;
  padding: 0;
  line-height: 2.2;
  margin-bottom: 2rem;
}

.comparison-card-link {
  color: #000;
  font-weight: 600;
}

/* System Card (highlighted) */
.system-card-highlight {
  background: rgba(255, 140, 0, 0.1);
  border: 2px solid var(--brand2);
  position: relative;
  padding: 2.5rem;
}

.system-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand2);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Metrics */
.metric-number-large {
  font-size: 2.5rem;
}

.metric-description {
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* Integration Flow */
.integration-flow-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(17, 21, 33, 0.8);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 140, 0, 0.3);
}

.integration-flow-heading {
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
}

.integration-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.integration-step {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.step-number-agents {
  background: var(--accent);
  color: #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-number-system {
  background: var(--brand2);
  color: #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-number-result {
  background: #00D4FF;
  color: #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-label-agents {
  color: var(--accent);
}

.step-label-system {
  color: var(--brand2);
}

.step-label-result {
  color: #00D4FF;
}

/* CTA Section */
.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-heading {
  margin-bottom: 1.5rem;
  color: #000;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: #000;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-link {
  color: #000;
  font-weight: 600;
}

.cta-footnote {
  color: #666;
  font-size: 0.95rem;
}

/* Gradient text for Agents link in menu */
.dropdown-menu a.agents-link-gradient {
  background: linear-gradient(135deg, #D4AF37, #A855F7) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: #D4AF37 !important; /* Fallback color for browsers without gradient support */
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  display: block;
}

/* Ensure visibility on hover */
.dropdown-menu a.agents-link-gradient:hover {
  background: linear-gradient(135deg, #FFD700, #C084FC) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: #FFD700 !important; /* Fallback color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-card-emoji {
    font-size: 3.5rem;
  }
  
  .service-card-emoji {
    font-size: 2.5rem;
  }
  
  .comparison-card,
  .system-card-highlight {
    padding: 1.5rem;
  }
  
  .integration-flow-container {
    padding: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .section-padding-5 {
    padding: 3rem 0;
  }
}
