.delivery-hero {
  --hero-radius: 26px;
  position: relative;
  overflow: hidden;
  border-radius: var(--hero-radius);
  min-height: 280px;
  margin-top: 1.5rem;
  background: #0d1117;
  color: #f4f7fb;
  display: grid;
  align-items: center;
}

.delivery-hero__image {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 17, 23, 0.7), rgba(13, 17, 23, 0.3)),
    url("../images/home/hero_2.b1d25bf4bee8.jpg") center/cover no-repeat;
  transform: scale(1.04);
}

.delivery-hero__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2.8rem;
  display: grid;
  gap: 1.1rem;
  font-family: "Trebuchet MS", "Verdana", sans-serif;
  animation: rise 0.8s ease both;
}

.delivery-hero__badge {
  align-self: start;
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(111, 210, 255, 0.2);
  color: #d8f4ff;
  font-size: 0.8rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.delivery-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0;
}

.delivery-hero__subtitle {
  margin: 0;
  max-width: 560px;
  color: rgba(244, 247, 251, 0.82);
  font-size: 1rem;
  line-height: 1.6;
}

.delivery-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.delivery-hero__meta-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.delivery-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0 1.5rem;
}

.delivery-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.08);
  animation: rise 0.8s ease both;
}

.delivery-panel:nth-child(2) {
  animation-delay: 0.1s;
}

.delivery-panel:nth-child(3) {
  animation-delay: 0.2s;
}

.delivery-panel__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f766e, #38bdf8);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.delivery-panel__title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.delivery-panel__text {
  font-size: 0.92rem;
  color: #475569;
  margin: 0;
}

.delivery-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.delivery-split__col {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.delivery-section-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.delivery-list {
  display: grid;
  gap: 0.8rem;
}

.delivery-list__item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: #334155;
}

.delivery-list__bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0f766e;
  margin-top: 0.35rem;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.2);
}

.delivery-note {
  margin-top: 1.1rem;
  padding: 0.75rem 0.9rem;
  background: rgba(15, 118, 110, 0.08);
  border-radius: 14px;
  font-size: 0.88rem;
  color: #0f172a;
}

.delivery-note--light {
  background: rgba(15, 23, 42, 0.06);
}

.payment-card {
  display: grid;
  gap: 0.9rem;
}

.payment-card__row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.payment-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.12);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.payment-card__title {
  font-weight: 600;
  font-size: 0.95rem;
}

.payment-card__text {
  font-size: 0.85rem;
  color: #6b7280;
}

.delivery-calc {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 20px;
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.4);
  margin-bottom: 2rem;
}

.delivery-calc__header h3 {
  margin: 0 0 0.4rem;
}

.delivery-calc__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.delivery-calc__result {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.delivery-faq {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  margin-bottom: 2rem;
}

.delivery-accordion {
  display: grid;
  gap: 0.8rem;
}

.delivery-accordion details {
  background: rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.delivery-accordion summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.delivery-accordion__body {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: #475569;
}

.delivery-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.2), rgba(56, 189, 248, 0.2));
  border-radius: 20px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  margin-bottom: 2rem;
}

.delivery-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.delivery-cta h3 {
  margin: 0 0 0.4rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .delivery-hero__content {
    padding: 2rem 1.6rem;
  }

  .delivery-calc__controls {
    align-items: flex-start;
  }
}
