/* =========================
   WHY US SECTION BASE
========================= */
.dr1060whyus {
  position: relative;
  padding: 90px 0;
  background: radial-gradient(circle at top, #0b1020, #050814 60%);
  color: #fff;
  overflow-x: clip;
  overflow-y: hidden;
}

/* =========================
   GRID CONTAINER
========================= */
.dr1060whyus-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   TITLE
========================= */
.dr1060whyus-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 12px;
  line-height: 1.1;

  background: linear-gradient(90deg, #ffffff, #7dd3fc, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   SUBTITLE
========================= */
.dr1060whyus-subtitle {
  opacity: 0.85;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 600px;
}

/* =========================
   STEPS LIST
========================= */
.dr1060whyus-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* STEP CARD */
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;

  padding: 16px 18px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: transform 0.3s ease, background 0.3s ease;
}

/* hover micro interaction */
.step:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
}

/* STEP NUMBER */
.step .num {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  font-weight: 700;
  flex-shrink: 0;

  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.25);
}

/* STEP TEXT */
.step h3 {
  margin: 0;
  font-size: 1.05rem;
}

.step p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* =========================
   VISUAL SECTION
========================= */
.dr1060whyus-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* GLOW BACKGROUND */
.visual-glow {
  position: absolute;
  width: 420px;
  height: 420px;

  background: radial-gradient(circle, rgba(0, 245, 255, 0.35), transparent 65%);
  filter: blur(70px);
  opacity: 0.8;

  animation: glowPulse 6s ease-in-out infinite;
}

/* GLOW ANIMATION */
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0.9; }
}

/* =========================
   3D CARD
========================= */
.visual-card {
  position: relative;
  width: 100%;
  max-width: 420px;

  border-radius: 22px;
  overflow: hidden;

  transform-style: preserve-3d;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 10px 30px rgba(0, 245, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* IMAGE */
.visual-card img {
  width: 100%;
  display: block;

  transform: scale(1.05);
  filter: contrast(1.15) saturate(1.25);
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88),
    transparent
  );
}

.overlay h3 {
  margin: 0;
  font-size: 1rem;
}

.overlay p {
  margin: 5px 0 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .dr1060whyus-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .dr1060whyus {
    padding: 70px 0;
  }

  .visual-card {
    max-width: 100%;
  }

  .visual-glow {
    width: 320px;
    height: 320px;
  }
}

/* =========================
   OPTIONAL: SMOOTH ENTRY FEEL
========================= */
.dr1060whyus-content,
.dr1060whyus-visual {
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}