.dtf-launch-banner{
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 92, 153, 0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(92, 119, 255, 0.10), transparent 28%),
    linear-gradient(135deg, #fff7fb 0%, #f6f9fc 100%);
  border-radius: 30px;
  margin: 30px auto;
  max-width: 1250px;
  box-shadow: 0 25px 70px rgba(24, 32, 56, 0.08);
}

.dtf-launch-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.dtf-machine-side,
.dtf-content-side{
  flex: 1;
  min-width: 0;
}

.dtf-machine-side{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

/* VIDEO */
.dtf-video-wrapper{
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 340px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,0.14);
  background: #111827;
}

.dtf-video-wrapper video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dtf-video-wrapper:after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 60%,
    rgba(0,0,0,0.10)
  );
  pointer-events: none;
}

/* CONTENT */
.dtf-content-side{
  position: relative;
  z-index: 2;
}

.dtf-content-side h2{
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 800;
  color: #1f2635;
}

.dtf-content-side h2 span{
  background: linear-gradient(90deg, #ff529c, #6a63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dtf-content-side p{
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.75;
  color: #627087;
  max-width: 620px;
}

/* PRICING */
.dtf-price-box{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
  max-width: 560px;
}

.dtf-price-item{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(25, 37, 62, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(25, 37, 62, 0.05);
  backdrop-filter: blur(6px);
}

.dtf-price-item h4{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
  color: #1f2635;
  font-weight: 800;
}

.dtf-price{
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  color: #ff4f95;
}

.dtf-price span{
  font-size: 14px;
  color: #6f7d93;
  font-weight: 700;
  margin-left: 4px;
}

.dtf-desc{
  margin: 8px 0 0;
  font-size: 13px;
  color: #7b879c;
  font-weight: 600;
  letter-spacing: .2px;
}

/* FEATURES */
.dtf-features{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.dtf-features span{
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(25, 37, 62, 0.08);
  color: #2e3a50;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(25, 37, 62, 0.04);
}

/* BUTTONS */
.dtf-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dtf-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 800;
  transition: all .25s ease;
}

.dtf-btn-primary{
  color: #fff !important;
  background: linear-gradient(90deg, #ff549b, #ff8a4c);
  box-shadow: 0 14px 26px rgba(255, 102, 141, 0.24);
}

.dtf-btn-primary:hover{
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255, 102, 141, 0.32);
}

.dtf-btn-secondary{
  color: #263247 !important;
  background: #fff;
  border: 1px solid rgba(25, 37, 62, 0.10);
  box-shadow: 0 8px 18px rgba(25, 37, 62, 0.05);
}

.dtf-btn-secondary:hover{
  color: #263247 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(25, 37, 62, 0.10);
}

.dtf-launch-banner .dtf-buttons a.dtf-btn,
.dtf-launch-banner .dtf-buttons a.dtf-btn:visited{
  text-decoration: none !important;
}

/* RESPONSIVE */
@media (max-width: 991px){
  .dtf-launch-inner{
    flex-direction: column;
    gap: 24px;
  }

  .dtf-content-side{
    text-align: center;
  }

  .dtf-content-side p{
    margin-left: auto;
    margin-right: auto;
  }

  .dtf-price-box{
    margin-left: auto;
    margin-right: auto;
  }

  .dtf-features,
  .dtf-buttons{
    justify-content: center;
  }

  .dtf-video-wrapper{
    max-width: 420px;
    height: 300px;
  }
}

@media (max-width: 767px){
  .dtf-launch-banner{
    padding: 28px 18px;
    border-radius: 22px;
  }

  .dtf-content-side h2{
    font-size: 30px;
  }

  .dtf-content-side p{
    font-size: 15px;
    line-height: 1.65;
  }

  .dtf-price-box{
    grid-template-columns: 1fr;
  }

  .dtf-video-wrapper{
    max-width: 100%;
    height: 260px;
    border-radius: 18px;
  }
}