/* =========================================================
   FEATURES – WHY USE DARTFINISHER
   ========================================================= */

.df-section-features {
  padding-block: 3rem 2rem;
  background: #f9fafb;
}

.df-section-features .df-section-header {
  max-width: 540px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2.2rem;
}

.df-section-features h2 {
  margin-bottom: 0.4rem;
  color: #0b1225;
}

.df-section-features p {
  margin-bottom: 1.6rem;
  color: #4b5563;
}

.df-feature-card {
  padding: 1.4rem 1.5rem;
  border-radius: 1.2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    border-color 0.15s ease-out;
}

.df-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(250, 204, 21, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.df-feature-card:hover::before {
  opacity: 1;
}

.df-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(250, 204, 21, 0.55);
}

.df-feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: #0b1225;
}

.df-feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

@media (max-width: 900px) {
  .df-section-features {
    padding-block: 2.5rem 2rem;
  }

  .df-section-features .df-section-header {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 640px) {
  .df-section-features {
    padding-block: 1.5rem 1.25rem;
  }

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

  .df-section-features h2 {
    font-size: 1.2rem;
  }

  .df-section-features p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  /* Verberg de 3e feature card op mobiel */
  .df-feature-card:nth-child(3) {
    display: none;
  }

  .df-feature-card {
    padding: 1rem;
  }

  .df-feature-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .df-feature-card p {
    font-size: 0.8rem;
  }
}
