.guarantee-band-section { padding-top: 30px; }

.guarantee-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: 34px;
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 16%, rgba(243,122,36,.2), transparent 12rem),
    linear-gradient(145deg, var(--graphite), var(--graphite-deep));
  color: #fff;
  box-shadow: 0 18px 46px rgba(41,35,31,.22);
}

.guarantee-band::after {
  content: "";
  position: absolute;
  right: -9%;
  top: -18%;
  width: 34%;
  height: 54%;
  border-radius: 0 0 0 80%;
  background: rgba(243,122,36,.18);
}

.guarantee-band-copy { position: relative; z-index: 1; }
.guarantee-band .section-kicker { color: #ffad6d; }

.guarantee-band h2 {
  max-width: 720px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(36px, 4.6vw, 62px);
}

.guarantee-band-copy > p {
  max-width: 800px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  font-weight: 750;
}

.guarantee-band-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.guarantee-band-points div {
  min-height: 120px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.18;
}

.guarantee-band-visual {
  position: relative;
  z-index: 1;
  min-height: 420px;
  overflow: hidden;
  border-radius: 26px;
  background: #211b18;
}

.guarantee-band-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 52% 50%;
  filter: saturate(.96) contrast(.98);
}

.guarantee-band-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,27,22,0) 48%, rgba(34,27,22,.34));
  pointer-events: none;
}

.protected-sofa {
  position: absolute;
  left: -7%;
  right: 16%;
  bottom: 28px;
  height: 170px;
  border-radius: 26px 34px 18px 18px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.92), rgba(255,255,255,.64)),
    repeating-linear-gradient(115deg, rgba(255,255,255,.2) 0 12px, rgba(210,220,218,.32) 12px 24px);
  box-shadow: 0 18px 30px rgba(34,27,22,.12);
}

.moving-label {
  position: absolute;
  right: 34px;
  padding: 12px 16px;
  border-left: 7px solid var(--brand);
  border-radius: 7px;
  background: rgba(255,255,255,.9);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.05;
  box-shadow: 0 12px 22px rgba(77,47,22,.12);
}

.moving-label.one { top: 42%; }
.moving-label.two { top: 66%; right: 18px; }

@media (max-width: 1080px) {
  .guarantee-band {
    grid-template-columns: 1fr;
  }

  .guarantee-band-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .guarantee-band-section { padding-top: 18px; }
  .guarantee-band {
    padding: 28px;
    border-radius: 28px;
  }

  .guarantee-band h2 { font-size: clamp(32px, 10vw, 44px); }
  .guarantee-band-visual { min-height: 300px; }
  .guarantee-band-points div { min-height: auto; }
}
