/* ─── ABOUT FOUNDER WIDGET ─── */
.da-founder-section {
  padding: 80px 0;
  background: #fff;
}
.da-founder-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.da-founder-section .founder-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}
.da-founder-section .founder-img-col {
  position: relative;
}
.da-founder-section .founder-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--dark, #111827);
  border-radius: var(--radius, 12px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.da-founder-section .founder-initials {
  font-size: 120px;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  font-family: var(--font-head, 'Oswald', sans-serif);
  letter-spacing: 4px;
}
.da-founder-section .founder-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.da-founder-section .founder-badges {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}
.da-founder-section .f-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-weight: 600;
  color: var(--dark, #111827);
}
.da-founder-section .f-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(97,206,112,0.12);
  color: var(--green, #61CE70);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.da-founder-section .founder-content .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-founder-section .founder-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-family: var(--font-head, 'Oswald', sans-serif);
  color: var(--dark, #111827);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.da-founder-section .founder-role {
  font-size: 18px;
  color: var(--green, #61CE70);
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.da-founder-section .founder-bio p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Elementor Editor Fix */
.elementor-editor-active .da-founder-section .fade-up,
.elementor-editor-active .da-founder-section .zoom-in {
  opacity: 1 !important;
  transform: none !important;
}

/* Responsive */
@media (max-width: 900px) {
  .da-founder-section .founder-grid {
    grid-template-columns: 1fr;
  }
  .da-founder-section .founder-img-box {
    aspect-ratio: 1/1;
    max-width: 400px;
    margin: 0 auto;
  }
  .da-founder-section .founder-badges {
    right: 0;
    bottom: 0;
  }
}
