/* 1-Click Payment Page Styles (Bootstrap 5 complement). */

/* Hero Section */
.one-click-hero {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.one-click-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.one-click-hero__content {
  width: min(100% - 2rem, 1000px);
  padding: 5rem 0;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  animation: fade-in-up 0.7s ease-out both;
}

.one-click-hero__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.one-click-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.one-click-hero__description {
  margin: 1.5rem 0 2.5rem;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  opacity: 0.95;
  line-height: 1.6;
}

/* Tokenization intro */
.one-click-tokenization {
  background: #fff;
}

.one-click-tokenization h2 {
  color: #1f344f;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.one-click-tokenization p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #5e6f80;
  line-height: 1.7;
}

/* Benefits */
.one-click-benefits .pull-left {
  float: left;
}

.one-click-benefits .pull-right {
  float: right;
}

.one-click-benefits .m-t-40 {
  margin-top: 40px;
}

.box-all {
  padding: 60px 0 60px;
}

.bg-f3f8ff {
  background: #f3f8ff;
}

.one-click-benefits .box-title {
  text-align: center;
  margin-bottom: 30px;
}

.one-click-benefits .box-title h2 {
  font-size: 36px;
  color: #333;
  font-weight: lighter;
}

.one-click-benefits .box-benefit .container {
  background: url("../../images/landing/banner_2.png") no-repeat right bottom;
  padding-bottom: 37px;
}

.one-click-benefits .box-benefit .container::after {
  content: "";
  display: table;
  clear: both;
}

.one-click-benefits .box-text ul {
  margin: 0;
  padding: 0;
}

.one-click-benefits .box-text ul li {
  list-style: none;
  margin-bottom: 40px;
}

.one-click-benefits .box-text ul li:last-child {
  margin-bottom: 0;
}

.one-click-benefits .box-text ul li .bt-img {
  float: left;
}

.one-click-benefits .box-text ul li .bt-text {
  margin-left: 95px;
}

.one-click-benefits .box-text ul li .bt-text label {
  color: #3f4765;
  font-size: 15px;
  margin-bottom: 0;
}

.one-click-benefits .box-text ul li .bt-text p {
  font-size: 13px;
  color: #73798c;
  line-height: 20px;
}

.one-click-benefits .box-img {
  margin-top: 40px;
  background: url("../../images/landing/banner_2.png") no-repeat right bottom;
  background-size: contain;
  min-height: 320px;
}

@media (max-width: 991.98px) {
  .one-click-benefits .box-img {
    display: none;
  }

  .one-click-benefits .box-text {
    float: none !important;
    width: 100%;
  }
}

/* Working model & applied features images */
.one-click-process {
  background: #fff;
}

.one-click-features {
  background: #f7fafc;
}

.one-click-media {
  max-width: 880px;
}

/* Customers */
.one-click-customers {
  background: #fff;
}

.one-click-customers__logo {
  display: grid;
  min-height: 110px;
  padding: 1.2rem;
  background: #f7fafc;
  /*border: 1px solid #e3e8ee;*/
  /*border-radius: 6px;*/
  place-items: center;
  transition: all 0.25s ease;
}

.one-click-customers__logo:hover {
  border-color: #00a8e6;
  box-shadow: 0 8px 20px rgba(0, 168, 230, 0.12);
  transform: translateY(-3px);
}

.one-click-customers__logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

/* Captcha image in the contact modal */
.contact-modal__captcha-image {
  height: 40px;
  flex-shrink: 0;
  border: 1px solid #cfd8df;
  border-radius: 4px;
  cursor: pointer;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 800px) {
  .one-click-hero {
    min-height: 450px;
  }

  .one-click-hero__content {
    padding: 3rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .one-click-hero__content {
    animation: none;
  }
}
