/* Features Section Styles */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Integration Box */
.integration-box {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 1rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .integration-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.integration-box svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.integration-box h3 {
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.integration-box p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.6;
}
