
/* ================= DOORSTEP HERO ================= */
.doorstep-premium {
  position: relative;
  background: linear-gradient(135deg, #1e3a5f 0%, #1e3a5f 48%, #2c5f8d 100%);
  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(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.26);
  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 {
  display: inline-block;
  color: var(--color-highlight);
  background: none;
  -webkit-text-fill-color: var(--color-highlight);
  font-weight: 900;
}

.doorstep-content p {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(245, 247, 250, 0.82);
  max-width: 500px;
  line-height: 1.6;
}

/* CTA */

.doorstep-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: var(--gradient-accent);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--color-primary-deep);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.25s ease;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.28);
}

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

.doorstep-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.34);
}

/* 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(11, 22, 37, 0.35);
}

/* 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;
  }
}
