/* Basant Businesses Page - Specific Styles */

/* Page Hero */
.page-hero {
  text-align: center;
  padding: 48px 20px 32px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease forwards;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 12px;
}

.page-subtitle {
  font-size: 20px;
  color: var(--muted);
  margin: 0;
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.content-card:nth-child(1) { animation-delay: 0.1s; }
.content-card:nth-child(2) { animation-delay: 0.2s; }
.content-card:nth-child(3) { animation-delay: 0.3s; }
.content-card:nth-child(4) { animation-delay: 0.4s; }
.content-card:nth-child(5) { animation-delay: 0.5s; }
.content-card:nth-child(6) { animation-delay: 0.6s; }
.content-card:nth-child(7) { animation-delay: 0.7s; }

.content-card h2 {
  margin: 0 0 16px;
  font-size: 28px;
  color: var(--text);
}

.content-card h3 {
  margin: 20px 0 12px;
  font-size: 20px;
  color: var(--accent-2);
}

.content-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  padding-left: 24px;
  position: relative;
  color: var(--text);
  line-height: 1.7;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: bold;
  font-size: 20px;
}

/* Highlight Card */
.highlight-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(14, 165, 233, 0.1));
  border: 2px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.highlight-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 16px;
}

.cta-section {
  margin-top: 24px;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.cta-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* Responsive Styles */
@media (max-width: 720px) {
  .page-hero {
    padding: 32px 12px 24px;
  }
  
  .content-section {
    padding: 0 12px 32px;
  }
  
  .content-card {
    padding: 24px;
  }
  
  .highlight-icon {
    font-size: 40px;
  }
}

