/* ─── ABOUT WHO WE ARE WIDGET ─── */
.da-about-who-section {
  padding: 80px 0;
  background: #f8faf9;
}
.da-about-who-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.da-about-who-section .section-tag {
  display: inline-block;
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--green, #61CE70);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 14px;
  background: rgba(97,206,112,0.12);
  border-radius: 20px;
}
.da-about-who-section .section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark, #111827);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-head, 'Oswald', sans-serif);
}
.da-about-who-section .section-title span {
  color: var(--green, #61CE70);
}
.da-about-who-section .section-divider {
  width: 60px;
  height: 3px;
  background: var(--green, #61CE70);
  border-radius: 2px;
  margin: 16px auto 24px;
}
.da-about-who-section .section-subtitle {
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.da-about-who-section .who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.da-about-who-section .who-service-card {
  background: #fff;
  border-radius: var(--radius, 12px);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.da-about-who-section .who-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--green, #61CE70);
}
.da-about-who-section .who-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(97,206,112,0.18);
  border-color: var(--green, #61CE70);
}
.da-about-who-section .who-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(97,206,112,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 26px;
  color: var(--green, #61CE70);
}
.da-about-who-section .who-service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark, #111827);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  font-family: var(--font-head, 'Oswald', sans-serif);
}
.da-about-who-section .who-service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

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