.mtfe-dh {
  --dh-blush:     #F3EDEE;
  --dh-card:      #FBF9F9;
  --dh-plum:      #2E2233;
  --dh-plum-soft: #463950;
  --dh-coral:     #E89B8B;
  --dh-coral-dk:  #D17E6C;
  --dh-ink:       #2E2233;
  --dh-text:      #5A4F60;
  --dh-muted:     #9A8E9F;
  --dh-highlight: #E7C9C1;
  --dh-line:      #E7DEE1;
  --dh-left-w:    400px;
  --dh-gap:       24px;
  --dh-max-w:     1080px;
  --dh-right-radius: 28px;
  --dh-right-min-h:  580px;
  font-family: 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.mtfe-dh .dh-hero {
  display: grid;
  grid-template-columns: var(--dh-left-w) 1fr;
  gap: var(--dh-gap);
  max-width: var(--dh-max-w);
  margin: 0 auto;
  padding: 20px;
  align-items: stretch;
}

/* ── LEFT ─────────────────────────────────────────────────────────────── */
.mtfe-dh .dh-left {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  position: relative;
}

.mtfe-dh .dh-title {
  font-size: 80px !important;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--dh-ink);
  position: relative;
  display: inline-block;
}

.mtfe-dh .dh-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 18%;
  bottom: 4px;
  height: 16px;
  background: var(--dh-highlight);
  z-index: -1;
}

.mtfe-dh .dh-acquaint {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.mtfe-dh .dh-acquaint__label {
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--dh-ink);
}

.mtfe-dh .dh-acquaint__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--dh-coral), transparent);
}

.mtfe-dh .dh-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--dh-text);
  margin-top: 18px;
}

/* Stats */
.mtfe-dh .dh-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 30px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.mtfe-dh .dh-clients {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--dh-highlight);
  border-radius: 100px;
  padding: 7px 16px 7px 8px;
  margin-right: 24px;
}

.mtfe-dh .dh-avatars {
  display: flex;
}

.mtfe-dh .dh-avatars span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--dh-blush);
  margin-left: -8px;
  background-size: cover;
  background-position: center;
  display: block;
  flex-shrink: 0;
}

.mtfe-dh .dh-avatars span:first-child {
  margin-left: 0;
}

.mtfe-dh .dh-clients__txt {
  font-size: 12px;
  font-weight: 600;
  color: var(--dh-plum);
  white-space: nowrap;
}

.mtfe-dh .dh-stat {
  padding: 0 20px;
  border-left: 1px solid var(--dh-line);
}

.mtfe-dh .dh-stat__num {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--dh-ink);
}

.mtfe-dh .dh-stat__lbl {
  font-size: 11px;
  color: var(--dh-muted);
}

/* CTA */
.mtfe-dh .dh-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.mtfe-dh .dh-calc-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--dh-plum);
  color: var(--dh-blush);
  border: none;
  border-radius: 100px;
  padding: 18px 64px 18px 26px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.16s;
  text-decoration: none;
}

.mtfe-dh .dh-calc-btn:hover {
  background: var(--dh-plum-soft);
}

.mtfe-dh .dh-calc-btn__dot {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dh-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--dh-blush);
}

.mtfe-dh .dh-calc-btn__dot svg {
  width: 18px;
  height: 18px;
  stroke: var(--dh-plum);
}

.mtfe-dh .dh-learn {
  font-size: 14px;
  color: var(--dh-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 500;
}

.mtfe-dh .dh-learn:hover {
  color: var(--dh-coral-dk);
}

/* Gallery pill */
.mtfe-dh .dh-gallery {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  background: var(--dh-card);
  border: 1px solid var(--dh-line);
  border-radius: 100px;
  padding: 8px 18px 8px 8px;
  align-self: flex-start;
  text-decoration: none;
}

.mtfe-dh .dh-gallery__ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dh-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mtfe-dh .dh-gallery__ico svg {
  width: 14px;
  height: 14px;
  stroke: var(--dh-plum);
}

.mtfe-dh .dh-gallery__txt {
  font-size: 13px;
  font-weight: 500;
  color: var(--dh-ink);
}

/* ── RIGHT ────────────────────────────────────────────────────────────── */
.mtfe-dh .dh-right {
  position: relative;
  border-radius: var(--dh-right-radius);
  overflow: hidden;
  min-height: var(--dh-right-min-h);
  background: linear-gradient(160deg, #8a7d8f 0%, #5e4f63 38%, #3d2f44 70%, #2E2233 100%);
}

.mtfe-dh .dh-right__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mtfe-dh .dh-right__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mtfe-dh .dh-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 70% 10%, rgba(232, 155, 139, 0.28), transparent 55%),
    linear-gradient(0deg, rgba(46, 34, 51, 0.7) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.mtfe-dh .dh-right__overlay-hide::before {
  display: none;
}

/* Floating pills */
.mtfe-dh .dh-pill {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--dh-card);
  border-radius: 100px;
  padding: 8px 18px 8px 8px;
  box-shadow: 0 8px 24px -10px rgba(46, 34, 51, 0.5);
  font-size: 14px;
  font-weight: 500;
  color: var(--dh-ink);
}

.mtfe-dh .dh-pill__plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dh-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--dh-plum);
  flex-shrink: 0;
  line-height: 1;
}

.mtfe-dh .dh-pill--1 { top: 60px;  left: 50%; transform: translateX(-60%); }
.mtfe-dh .dh-pill--2 { top: 270px; right: 70px; }
.mtfe-dh .dh-pill--3 { top: 160px; left: 30px; }
.mtfe-dh .dh-pill--4 { top: 380px; left: 50%; transform: translateX(-50%); }

/* Video card */
.mtfe-dh .dh-video-card {
  position: absolute;
  z-index: 4;
  left: 36px;
  bottom: 70px;
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(46, 34, 51, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 12px;
  width: 230px;
}

.mtfe-dh .dh-video-card__thumb {
  width: 78px;
  border-radius: 10px;
  background: linear-gradient(135deg, #8a7d8f, #3d2f44);
  flex-shrink: 0;
  overflow: hidden;
}

.mtfe-dh .dh-video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mtfe-dh .dh-video-card__body {
  padding: 4px 0 4px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.mtfe-dh .dh-video-card__txt {
  color: var(--dh-blush);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.mtfe-dh .dh-video-card__play {
  align-self: flex-end;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dh-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.mtfe-dh .dh-video-card__play svg {
  width: 14px;
  height: 14px;
  fill: var(--dh-plum);
  margin-left: 2px;
}

/* Pager */
.mtfe-dh .dh-pager {
  position: absolute;
  right: 22px;
  bottom: 70px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mtfe-dh .dh-pager span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  background: var(--dh-coral);
  color: var(--dh-plum);
}

.mtfe-dh .dh-pager span.dim {
  background: rgba(243, 237, 238, 0.35);
  color: rgba(243, 237, 238, 0.9);
}

/* Video lightbox */
.mtfe-dh .dh-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(46, 34, 51, 0.9);
  align-items: center;
  justify-content: center;
}

.mtfe-dh .dh-lightbox.is-open {
  display: flex;
}

.mtfe-dh .dh-lightbox__inner {
  position: relative;
  width: 90vw;
  max-width: 860px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.mtfe-dh .dh-lightbox__inner iframe,
.mtfe-dh .dh-lightbox__inner video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.mtfe-dh .dh-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* Responsive */
@media (max-width: 860px) {
  .mtfe-dh .dh-hero {
    grid-template-columns: 1fr;
  }
  .mtfe-dh .dh-right {
    min-height: 420px;
  }
  .mtfe-dh .dh-title {
    font-size: 48px;
  }
  .mtfe-dh .dh-pill--2 {
    right: 20px;
  }
}

@media (max-width: 540px) {
  .mtfe-dh .dh-title {
    font-size: 36px;
  }
  .mtfe-dh .dh-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .mtfe-dh .dh-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  .mtfe-dh .dh-stat {
    border-left: none;
    border-top: 1px solid var(--dh-line);
    padding: 8px 0 0;
    width: 100%;
  }
}
