/* ===========================
   Guarantee Hero
=========================== */

.guarantee-hero {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
}

.guarantee-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/themes/protean_commerce/img/deer-blowing.png');
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

/* Dark overlay */
.guarantee-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* Keep text above overlay */
.guarantee-hero-inner {
  position: relative;
  z-index: 2;
}

.guarantee-logo {
  max-width: 400px;
  margin-bottom: 2rem;
}

.guarantee-logo img {
    width: 100%
}

.guarantee-hero h1 {
  font-family: "Ultra";
  font-size: clamp(1rem, 2vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.guarantee-sub {
  font-size: 1.2rem;
  opacity: 0.85;
}


/* ===========================
   Promise Section
=========================== */

.guarantee-promise {
  padding: 5rem 2rem;
  background: #111;
  color: #e9e3d7;
  text-align: center;
}

.guarantee-promise h2 {
  font-family: "Ultra";
  font-size: 2.5rem;
  color: #C20F2D;
  margin-bottom: 2rem;
  font-weight: normal;
}

.promise-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
}

.promise-strong {
  font-weight: bold;
  font-size: 1.1rem;
}


/* ===========================
   Steps Section
=========================== */

.guarantee-steps {
  padding: 6rem 2rem;
  background: #000;
  color: #fff;
}

.guarantee-steps h2 {
  text-align: center;
  font-family: "Ultra";
  margin-bottom: 4rem;
  font-weight: normal;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border: 1px solid #C20F2D;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card h3 {
  color: #C20F2D;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.step-card h4 {
  font-family: "Atilla";
  margin-bottom: 1rem;
  font-size: 1.5rem;
}


/* ===========================
   Important Box
=========================== */

.guarantee-important {
  padding: 4rem 2rem;
  background: #1a1717;
  color: #fff;
}

.guarantee-important h3 {
  color: #C20F2D;
  margin-bottom: 1.5rem;
  text-align: center;
}

.guarantee-important ul {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.guarantee-important li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}


/* ===========================
   Closing Section
=========================== */

.guarantee-closing {
  padding: 6rem 2rem;
  text-align: center;
  background: #0d0d0d;
  color: #fff;
}

.guarantee-closing h2 {
  font-family: "Ultra";
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.guarantee-cta {
  display: inline-block;
  margin-top: 2rem;
  background: #C20F2D;
  color: #fff;
  padding: 1rem 2rem;
  font-family: "Ultra";
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}

.guarantee-cta:hover {
  background: #b81b26;
}



@media (max-width: 992px) {

  .guarantee-hero {
    padding: 3rem 2rem;
  }

  .guarantee-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/themes/protean_commerce/img/deer-blowing-mobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: 0;
  }

  .guarantee-logo {
    width: auto;
    max-width: 260px;
    margin-bottom: 1rem;
  }

  .guarantee-hero h1 {
    font-size: clamp(1rem, 2vw, 3rem);
  }

  .guarantee-promise {
    padding: 3rem 2rem;
  }

  .guarantee-steps {
    padding: 2rem 2rem;
  }

}