.features-page {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(180deg, var(--fw-white-050) 0%, var(--fw-white-150) 100%);
}

.features-page .features-hero {
  position: relative;
  background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--fw-black-000) 68%, transparent),
      color-mix(in srgb, var(--fw-black-000) 42%, transparent)
    ),
    url(/assets/img/desk-2.png);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding: 90px 0 84px;
}

.features-page .features-hero-overlay {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--color-blue-500) 34%, transparent), transparent 42%);
}

.features-page .features-hero .container {
  z-index: 2;
}

.features-page .features-kicker {
  display: inline-block;
  background: color-mix(in srgb, var(--fw-white-000) 20%, transparent);
  color: var(--fw-white-000);
  border: 1px solid color-mix(in srgb, var(--fw-white-000) 40%, transparent);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.features-page .features-title {
  color: var(--fw-white-000);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.18;
}

.features-page .features-subtitle {
  color: color-mix(in srgb, var(--fw-white-000) 90%, transparent);
  font-size: 1.1rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.features-page .features-content {
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.features-page .features-stat-card {
  background: var(--fw-white-000);
  border: 1px solid color-mix(in srgb, var(--fw-black-000) 8%, transparent);
  border-radius: 16px;
  box-shadow: 0 14px 24px color-mix(in srgb, var(--fw-black-000) 8%, transparent);
  padding: 22px;
  text-align: center;
}

.features-page .stat-number {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-blue-500);
}

.features-page .stat-label {
  margin-top: 8px;
  color: var(--fw-black-250);
  font-size: 0.95rem;
}

.features-page .feature-card {
  height: 100%;
  background: linear-gradient(160deg, var(--fw-white-000), color-mix(in srgb, var(--fw-white-100) 60%, transparent));
  border: 1px solid color-mix(in srgb, var(--fw-black-000) 8%, transparent);
  border-radius: 16px;
  box-shadow: 0 14px 24px color-mix(in srgb, var(--fw-black-000) 7%, transparent);
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.features-page .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px color-mix(in srgb, var(--fw-black-000) 12%, transparent);
}

.features-page .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--color-blue-500) 14%, var(--fw-white-000));
  color: var(--color-blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  margin-bottom: 14px;
}

.features-page .feature-card h3 {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--fw-black-100);
  margin-bottom: 10px;
}

.features-page .feature-card p {
  font-size: 0.95rem;
  color: var(--fw-black-250);
  margin: 0;
  line-height: 1.55;
}

.features-page .features-cta h2 {
  font-weight: 700;
  color: var(--fw-black-100);
}

.features-page .features-cta p {
  color: var(--fw-black-250);
}

@media (max-width: 767px) {
  .features-page .features-hero {
    padding: 68px 0 58px;
  }

  .features-page .features-content {
    margin-top: -16px;
  }
}
