.features-page {
  background: var(--white);
}

.features-hero {
  background:
    radial-gradient(ellipse at 82% 20%, rgba(249, 115, 22, 0.12), transparent 38%),
    linear-gradient(165deg, var(--gray-50) 0%, var(--white) 100%);
}

.features-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.features-overview,
.features-workflow {
  padding: var(--space-20) 0;
}

.features-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.features-overview-item {
  min-height: 18rem;
  padding: var(--space-6);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.features-overview-icon {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange-600);
}

.features-overview-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.features-overview-item h3 {
  margin-top: var(--space-5);
  font-size: var(--text-2xl);
  line-height: 1.2;
}

.features-overview-item h3 a {
  color: inherit;
  text-decoration: none;
}

.features-overview-item h3 a:hover {
  color: var(--orange-600);
}

.features-overview-item p {
  margin-top: var(--space-3);
  color: var(--navy-600);
  line-height: 1.7;
}

.features-workflow {
  background: var(--navy-900);
  color: var(--white);
}

.features-workflow-copy {
  max-width: 760px;
}

.features-workflow-copy .section-label {
  color: var(--orange-400);
}

.features-workflow-copy h2 {
  margin-top: var(--space-4);
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.features-workflow-copy p {
  margin-top: var(--space-4);
  color: var(--gray-300);
  font-size: var(--text-lg);
  line-height: 1.75;
}

.features-workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.features-workflow-steps article {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.features-workflow-steps span {
  color: var(--orange-400);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.features-workflow-steps h3 {
  margin-top: var(--space-3);
  color: var(--white);
  font-size: var(--text-2xl);
}

.features-workflow-steps p {
  margin-top: var(--space-3);
  color: var(--gray-300);
  line-height: 1.7;
}

.features-cta {
  padding: var(--space-20) 0 var(--space-24);
}

.features-cta-panel {
  position: relative;
  overflow: hidden;
  padding: var(--space-10);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
}

.features-cta-panel h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.features-cta-panel p {
  max-width: 760px;
  margin-top: var(--space-4);
  color: var(--navy-600);
  font-size: var(--text-lg);
  line-height: 1.75;
}

.features-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-8);
}

.features-text-link {
  position: relative;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}

.features-text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--orange-500);
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.features-text-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 980px) {
  .features-overview-grid,
  .features-workflow-steps {
    grid-template-columns: 1fr;
  }

  .features-overview-item {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .features-hero-actions,
  .features-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .features-hero-actions .btn,
  .features-cta-actions .btn,
  .features-text-link {
    justify-content: center;
    text-align: center;
  }

  .features-overview,
  .features-workflow {
    padding: var(--space-14) 0;
  }

  .features-cta {
    padding: var(--space-14) 0 var(--space-20);
  }

  .features-cta-panel {
    padding: var(--space-8);
  }
}
