/* ─── WHY CHOOSE US WIDGET ─── */
.da-why-us-section {
  background: var(--dark2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.da-why-us-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.da-why-us-section .text-center {
  text-align: center;
}
.da-why-us-section .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.da-why-us-section .why-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.da-why-us-section .why-card:hover {
  border-color: var(--green);
  background: rgba(97,206,112,0.04);
}
.da-why-us-section .why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.da-why-us-section .why-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #ffffff;
}
.da-why-us-section .why-card p {
  font-size: 0.83rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Elementor Editor Viewport Compatibility */
.elementor-editor-active .da-why-us-section .fade-up {
  opacity: 1 !important;
  transform: none !important;
}
