@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body.dm-app .dm-section-head--with-illo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

body.dm-app .dm-section-head--with-illo .dm-section-subtitle {
  margin-left: 0;
  margin-right: 0;
}

body.dm-app .dm-person-illo {
  flex-shrink: 0;
}

body.dm-app .dm-feature__illo {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}

body.dm-app .dm-how-illo {
  width: 56px;
  height: 56px;
}

body.dm-app .dm-cta-card {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #1E40AF 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

body.dm-app .dm-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  pointer-events: none;
}

body.dm-app .dm-cta-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
  pointer-events: none;
}

body.dm-app .dm-cta-card__title {
  color: white;
}

body.dm-app .dm-cta-card__sub {
  color: rgba(255,255,255,0.75);
}

body.dm-app .dm-cta-card .btn-primary {
  background: white;
  color: #1E3A8A;
  border-color: white;
}

body.dm-app .dm-cta-card .btn-primary:hover {
  background: #F1F5F9;
  transform: translateY(-1px);
}

body.dm-app .dm-cta-card .btn-outline-primary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.35);
}

body.dm-app .dm-cta-card .btn-outline-primary:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

body.dm-app .dm-price-card__ext::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dm-primary);
  opacity: 0.4;
  transition: opacity 0.25s;
}

body.dm-app .dm-price-card:hover .dm-price-card__ext::before {
  opacity: 1;
}

body.dm-app .dm-site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1E40AF, #2563EB, #3B82F6, #2563EB, #1E40AF);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

body.dm-app .dm-footer-payments {
  display: flex;
  gap: 6px;
}

body.dm-app .dm-payment-badge {
  height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #64748B;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  body.dm-app .dm-section-head--with-illo {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  body.dm-app .dm-section-head--with-illo .dm-section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  body.dm-app .dm-person-illo {
    width: 140px;
    height: 140px;
  }
}
