@charset "UTF-8";
.features-hero {
  text-align: center;
  padding: 80px 0 60px;
}
.features-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.features-hero .lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .features-hero {
    padding: 60px 0 40px;
  }
  .features-hero h1 {
    font-size: 2rem;
  }
  .features-hero .lead {
    font-size: 1rem;
    padding: 0 16px;
  }
}

.comparison-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.comparison-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .comparison-section {
    padding: 40px 0;
  }
  .comparison-section h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.comparison-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.comparison-card.bad {
  border-color: rgba(239, 68, 68, 0.25);
}
.comparison-card.bad::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--danger);
}
.comparison-card.bad h3 {
  color: #f87171;
}
.comparison-card.bad li::before {
  content: "✕";
  color: var(--danger);
}
.comparison-card.good {
  border-color: rgba(16, 185, 129, 0.25);
}
.comparison-card.good::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--success);
}
.comparison-card.good h3 {
  color: #34d399;
}
.comparison-card.good li::before {
  content: "✓";
  color: var(--success);
}
.comparison-card h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comparison-card li {
  padding: 8px 0;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.comparison-card li::before {
  font-weight: bold;
}
@media (max-width: 768px) {
  .comparison-card {
    padding: 24px;
  }
  .comparison-card h3 {
    font-size: 1.125rem;
  }
}

.flow-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.flow-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 16px;
}
.flow-section .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .flow-section {
    padding: 60px 0;
  }
  .flow-section h2 {
    font-size: 1.5rem;
  }
  .flow-section .subtitle {
    margin-bottom: 40px;
  }
}

.flow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .flow-container {
    flex-direction: column;
    gap: 16px;
  }
}

.flow-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  width: 180px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}
.flow-step:nth-child(1) {
  animation-delay: 0s;
}
.flow-step:nth-child(2) {
  animation-delay: 0.1s;
}
.flow-step:nth-child(3) {
  animation-delay: 0.2s;
}
.flow-step:nth-child(4) {
  animation-delay: 0.3s;
}
.flow-step:nth-child(5) {
  animation-delay: 0.4s;
}
.flow-step .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.flow-step h4 {
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.flow-step p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 768px) {
  .flow-step {
    width: 100%;
    max-width: 280px;
    padding: 20px;
  }
}

.flow-arrow {
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
  animation-delay: 0.6s;
}
@media (max-width: 768px) {
  .flow-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.features-grid-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.features-grid-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .features-grid-section {
    padding: 60px 0;
  }
  .features-grid-section h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -20px rgba(99, 102, 241, 0.3);
}
.feature-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}
.feature-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: white;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .feature-card {
    padding: 24px;
  }
  .feature-card:hover {
    transform: none;
  }
}

.demo-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
}
.demo-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 16px;
}
.demo-section .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .demo-section {
    padding: 60px 0;
  }
  .demo-section h2 {
    font-size: 1.5rem;
  }
  .demo-section .subtitle {
    margin-bottom: 32px;
    font-size: 0.9rem;
  }
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 768px) {
  .demo-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.demo-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.demo-form h3 {
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.demo-form input, .demo-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}
.demo-form input:focus, .demo-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.demo-form button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.demo-form button:hover {
  background: var(--primary-hover);
}
@media (max-width: 768px) {
  .demo-form {
    padding: 24px;
  }
}

.demo-output {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.demo-output h3 {
  font-size: 1.125rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-output .live-badge {
  background: var(--success);
  color: white;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  animation: pulse 2s infinite;
}
.demo-output pre {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  font-size: 0.75rem;
  line-height: 1.5;
  max-height: 300px;
  margin: 0;
}
.demo-output code {
  color: var(--text-muted);
}
.demo-output .highlight {
  color: var(--success);
}
.demo-output .key {
  color: var(--primary);
}
@media (max-width: 768px) {
  .demo-output {
    padding: 24px;
  }
  .demo-output pre {
    font-size: 0.7rem;
    padding: 12px;
    max-height: 250px;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .stats-section {
    padding: 40px 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}
@media (max-width: 768px) {
  .stat-item h3 {
    font-size: 2rem;
  }
  .stat-item p {
    font-size: 0.875rem;
  }
}

.cta-section {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--text-muted);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }
  .cta-section h2 {
    font-size: 1.5rem;
  }
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}/*# sourceMappingURL=features.css.map */