
/* ================= DOORSTEP HERO ================= */
.doorstep-premium {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 40px 20px;
  overflow: hidden;
  color: #ffffff;
}

.doorstep-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* BADGE */

.doorstep-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.15);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.doorstep-badge svg {
  width: 16px;
  height: 16px;
}

/* CONTENT */

.doorstep-content h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.doorstep-content h1 span {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.doorstep-content p {
  margin-top: 20px;
  font-size: 18px;
  color: #cbd5f5;
  max-width: 500px;
  line-height: 1.6;
}

/* CTA */

.doorstep-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.25s ease;
  box-shadow: 0 15px 35px rgba(239,68,68,0.35);
}

.doorstep-cta svg {
  width: 18px;
  height: 18px;
}

.doorstep-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(239,68,68,0.45);
}

/* IMAGE */

.doorstep-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.doorstep-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 420px;
  border-radius: 24px;
  object-fit: contain;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* RING */


@media (max-width: 900px) {
  .doorstep-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .doorstep-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .doorstep-premium {
    padding: 90px 20px;
  }

  .doorstep-content h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .doorstep-content p {
    font-size: 15px;
    margin-top: 16px;
  }

  .doorstep-image {
    margin-top: 40px;
  }

  .image-ring {
    width: 220px;
    height: 220px;
  }

  .doorstep-cta {
    padding: 14px 26px;
    font-size: 14px;
  }
}
