/* Features Page Styles */
.features-page {
  padding: 8rem 1.5rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero */
.features-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.features-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.features-hero h1 svg {
  color: var(--orchid);
}

.features-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Sections */
.features-section {
  margin-bottom: 3rem;
}

.features-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: var(--feat-color, var(--orchid));
  transform: translateY(-2px);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--feat-color, var(--orchid)) 15%, transparent);
  color: var(--feat-color, var(--orchid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.use-case-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.2s;
}

.use-case-item:hover {
  border-color: var(--orchid);
  transform: translateY(-1px);
}

.use-case-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.use-case-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.use-case-item p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* CTA */
.features-cta {
  text-align: center;
  padding: 2rem 0;
}

.features-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 12px !important;
}

/* Responsive */
@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .features-page {
    padding: 6rem 1rem 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-hero h1 {
    flex-direction: column;
  }

  .features-section h2 {
    text-align: center;
  }

  .features-cta-btn {
    width: 100%;
  }
}
