/* TRY Dual CTA */
.try-dual-cta {
  position: relative;
  z-index: 6;
  padding: clamp(70px, 8vw, 120px) 20px;
  background:
    radial-gradient(circle at 0% 50%, rgba(212,175,55,.12), transparent 28%),
    radial-gradient(circle at 100% 50%, rgba(212,175,55,.08), transparent 30%),
    #0b0b0b;
  font-family: "Titillium Web", sans-serif;
}

.try-dual-cta__shell {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
  overflow: visible;
}

.try-dual-cta__label {
  position: absolute;
  top: -28px;
  left: 70px;
  z-index: 2;
  padding: 14px 30px;
  background: #fff;
  border-radius: 12px;
  color: #0b0b0b;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.try-dual-cta__label::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
}

.try-dual-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.try-dual-cta__card {
  min-height: 420px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: center;
  padding: clamp(50px, 6vw, 78px);
}

.try-dual-cta__card + .try-dual-cta__card {
  border-left: 1px solid #dedede;
}

.try-dual-cta__icon {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, #f8e9ad, #d4af37 55%, #aa8722 100%);
  color: #0b0b0b;
  font-size: 2.8rem;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,.38),
    0 16px 36px rgba(0,0,0,.12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.try-dual-cta__card:hover .try-dual-cta__icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,.46),
    0 22px 42px rgba(0,0,0,.16);
}

.try-dual-cta__content h2 {
  margin: 0 0 22px;
  color: #0b0b0b;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  font-weight: 700;
  text-align: left;
  letter-spacing: -.035em;
}

.try-dual-cta__content p {
  margin: 0 0 30px;
  color: #3f3f3f;
  font-size: 1.03rem;
  line-height: 1.65;
  font-weight: 300;
  text-align: left;
}

.try-dual-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 22px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  color: #0b0b0b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .9rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,.09);
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.try-dual-cta__button span {
  font-size: 1.2rem;
  transition: transform .3s ease;
}

.try-dual-cta__button:hover {
  transform: translateY(-3px);
  background: #0b0b0b;
  color: #fff;
  border-color: #0b0b0b;
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}

.try-dual-cta__button:hover span {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .try-dual-cta__grid {
    grid-template-columns: 1fr;
  }

  .try-dual-cta__card + .try-dual-cta__card {
    border-left: 0;
    border-top: 1px solid #dedede;
  }
}

@media (max-width: 640px) {
  .try-dual-cta {
    padding: 70px 14px;
  }

  .try-dual-cta__label {
    left: 24px;
    padding: 12px 20px;
    font-size: .95rem;
  }

  .try-dual-cta__card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 50px 26px 38px;
  }

  .try-dual-cta__icon {
    width: 90px;
    height: 90px;
    font-size: 2rem;
  }

  .try-dual-cta__button {
    width: 100%;
    justify-content: center;
  }
}
