.home-reasons {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(212, 175, 55, .07), transparent 25%),
    linear-gradient(180deg, #0d0d0d 0%, #10100f 100%);
}

.home-reasons::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  left: -300px;
  bottom: -390px;
  border: 1px solid rgba(212, 175, 55, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(212, 175, 55, .025), 0 0 0 140px rgba(212, 175, 55, .015);
  pointer-events: none;
}

.home-reasons .home-shell {
  position: relative;
  z-index: 1;
}

.home-reasons .reasons-heading {
  position: relative;
  max-width: 700px;
  margin-bottom: 40px;
  padding-left: 22px;
}

.home-reasons .reasons-heading::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 2px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6dc76, #a77814);
  box-shadow: 0 0 20px rgba(212, 175, 55, .32);
}

.home-reasons .reasons-heading::after {
  content: none;
}

.home-reasons .reasons-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.home-reasons .reasons-subtitle {
  margin: 17px 0 0;
  color: #c9c4b8;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 650;
  line-height: 1.45;
}

.home-reasons .reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.3vw, 32px);
}

.home-reasons .reason-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  min-width: 0;
  min-height: 418px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 30px 34px;
  border: 1px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(27, 27, 24, .98), rgba(7, 7, 7, .99)) padding-box,
    linear-gradient(135deg, rgba(246, 220, 118, .75), rgba(255, 255, 255, .1) 42%, rgba(212, 175, 55, .28)) border-box;
  text-align: left;
  box-shadow: 0 26px 56px rgba(0, 0, 0, .32), inset 0 1px rgba(255, 255, 255, .035);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.home-reasons .reason-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 220px;
  height: 220px;
  right: -120px;
  bottom: -125px;
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, .1), transparent 66%);
  box-shadow: 0 0 0 36px rgba(212, 175, 55, .025);
  opacity: 1;
  pointer-events: none;
}

.home-reasons .reason-card::after {
  content: '';
  position: absolute;
  right: 30px;
  bottom: 0;
  left: 30px;
  height: 2px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, #d4af37 22%, #f6dc76 50%, #d4af37 78%, transparent);
  opacity: .82;
}

.home-reasons .reason-card:hover {
  transform: translateY(-7px);
  border-color: transparent;
  box-shadow: 0 34px 70px rgba(0, 0, 0, .42), 0 0 28px rgba(212, 175, 55, .08), inset 0 1px rgba(255, 255, 255, .055);
  filter: brightness(1.035);
}

.home-reasons .reason-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.home-reasons .reason-icon {
  display: grid;
  flex: 0 0 76px;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0;
  border: 1px solid rgba(246, 220, 118, .38);
  border-radius: 22px;
  color: #f4d46d;
  background: linear-gradient(145deg, rgba(212, 175, 55, .16), rgba(212, 175, 55, .025));
  box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 12px 30px rgba(0, 0, 0, .25), 0 0 24px rgba(212, 175, 55, .08);
}

.home-reasons .reason-icon svg {
  width: 42px;
  height: 42px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(244, 212, 109, .28));
}


.home-reasons .reason-card h3 {
  position: relative;
  z-index: 1;
  align-self: stretch;
  margin: 30px 0 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.45vw, 1.33rem);
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.home-reasons .reason-card .reason-tag {
  position: relative;
  z-index: 1;
  align-self: stretch;
  margin: 13px 0 0;
  color: #e8c85f;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .015em;
  text-align: center;
}

.home-reasons .reason-card .reason-copy {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 27px 0 0;
  color: #c9c9c5;
  font-size: .93rem;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .home-reasons .reason-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }

  .home-reasons .reason-card {
    min-height: 360px;
  }

  .home-reasons .reason-card .reason-copy {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .home-reasons .reasons-heading {
    margin-bottom: 28px;
    padding-left: 17px;
  }

  .home-reasons .reasons-heading::before {
    top: 2px;
    bottom: 1px;
  }

  .home-reasons .reasons-subtitle {
    margin-top: 14px;
  }

  .home-reasons .reason-card {
    min-height: 0;
    padding: 25px 23px 30px;
    border-radius: 20px;
  }

  .home-reasons .reason-icon {
    flex-basis: 66px;
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .home-reasons .reason-icon svg {
    width: 36px;
    height: 36px;
  }


  .home-reasons .reason-card h3 {
    margin-top: 25px;
  }

  .home-reasons .reason-card .reason-copy {
    margin-top: 23px;
  }
}

.home-reasons .reason-card:nth-child(1) .reason-icon {
  border-color: rgba(93, 218, 255, .38);
  background:
    radial-gradient(circle at 25% 20%, rgba(66, 232, 255, .2), transparent 46%),
    linear-gradient(145deg, rgba(139, 92, 246, .16), rgba(255, 77, 141, .055));
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 12px 30px rgba(0, 0, 0, .25), 0 0 25px rgba(112, 105, 255, .16);
}

.home-reasons .reason-card:nth-child(2) .reason-icon {
  border-color: rgba(255, 193, 73, .4);
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 122, 69, .2), transparent 46%),
    linear-gradient(145deg, rgba(255, 216, 77, .15), rgba(167, 255, 90, .05));
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 12px 30px rgba(0, 0, 0, .25), 0 0 25px rgba(255, 186, 55, .15);
}

.home-reasons .reason-card:nth-child(3) .reason-icon {
  border-color: rgba(174, 101, 255, .4);
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 79, 200, .2), transparent 46%),
    linear-gradient(145deg, rgba(122, 92, 255, .17), rgba(82, 216, 255, .055));
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 12px 30px rgba(0, 0, 0, .25), 0 0 25px rgba(137, 88, 255, .17);
}

@media (prefers-reduced-motion: reduce) {
  .home-reasons .reason-card {
    transition: none;
  }
}
