/* Hero block */
.liqpay-hero {
  background: linear-gradient(135deg, #011a3c 0%, #013080 50%, #006BFF 100%);
  color: #fff;
  padding: 70px 0 80px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
      margin-top: -70px;
}
.liqpay-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
/* .liqpay-hero::after { */
  /* content: ''; */
  /* position: absolute; */
  /* bottom: -120px; left: -60px; */
  /* width: 500px; height: 500px; */
  /* border-radius: 50%; */
  /* background: rgba(255,255,255,0.03); */
/* } */
.liqpay-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.liqpay-hero .lead {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.85;
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 35px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}
.hero-badge {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.hero-cta {
  display: inline-block;
  background: #fff;
  color: #006BFF !important;
  font-weight: 800;
  font-size: 17px;
  padding: 16px 40px;
  border-radius: 59px;
  text-decoration: none;
  transition: background .2s, color .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.hero-cta:hover {
  background: #e6f0ff;
  color: #004cbf !important;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.22);
}
.hero-img-wrap {
  text-align: center;
  padding-top: 15px;
}
.hero-img-wrap img {
  max-width: 340px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* Section titles */
.section-title {
  font-weight: 800;
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 16px;
  color: #666;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 580px;
}
.section-block {
  margin-bottom: 70px;
}

/* Advantages grid */
.adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
}
.adv-card {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 230px;
  background: #fff;
  border: 1px solid #F2F2F2;
  box-shadow: 0 5px 18px rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.adv-card:hover {
  box-shadow: 0 10px 36px rgba(0,107,255,0.12);
  transform: translateY(-3px);
}
.adv-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #006BFF 0%, #4da3ff 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.adv-card h3 {
  font-weight: 700;
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
}
.adv-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Schemes section */
.scheme-list {
  counter-reset: scheme;
  list-style: none;
  padding: 0;
  margin: 0;
}
.scheme-list li {
  counter-increment: scheme;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  background: #F9FBFF;
  border: 1px solid #E8F0FF;
  border-radius: 14px;
  padding: 24px;
}
.scheme-list li::before {
  content: counter(scheme);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #006BFF;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.scheme-list li h3 {
  font-weight: 700;
  font-size: 17px;
  color: #222;
  margin-bottom: 6px;
}
.scheme-list li p {
	font-size: 14px;
	color: #555;
	margin-bottom: 0;
	line-height: 1.55;
}

/* Features checklist */
.features-check {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 30px;
    padding-left: 0;
}
.features-check li {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}
.features-check li::before {
	content: '';
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background: #006BFF;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-color: #006BFF;
}

/* Pricing block */
.pricing-card {
  background: linear-gradient(135deg, #f0f6ff 0%, #fff 100%);
  border: 2px solid #006BFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
}
.pricing-card .price-tag {
  font-size: 48px;
  font-weight: 800;
  color: #006BFF;
  line-height: 1;
  margin-bottom: 5px;
}
.pricing-card .price-note {
  font-size: 14px;
  color: #888;
  margin-bottom: 25px;
}
.pricing-card .price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.pricing-card .price-includes li {
  font-size: 15px;
  font-weight: 500;
  color: #444;
  padding: 7px 0;
  border-bottom: 1px solid #E8F0FF;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card .price-includes li:last-child {
  border-bottom: 0;
}
.pricing-card .price-includes li::before {
  content: '✓';
  color: #006BFF;
  font-weight: 800;
}

/* Contact form */
.contact-section {
  background: #F9FBFF;
  border-radius: 20px;
  padding: 50px 40px;
  margin-bottom: 60px;
}
.contact-section h2 {
  font-weight: 800;
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
}
.contact-section .contact-sub {
  font-size: 16px;
  color: #666;
  font-weight: 500;
  margin-bottom: 35px;
}
.contact-form-inner {
  max-width: 600px;
}
.form-group-custom {
  margin-bottom: 20px;
}
.form-group-custom label {
  font-weight: 600;
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  display: block;
}
.form-group-custom input,
.form-group-custom textarea,
.form-group-custom select {
  width: 100%;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  outline: none;
  transition: border .2s;
  box-shadow: none;
}
.form-group-custom input:focus,
.form-group-custom textarea:focus,
.form-group-custom select:focus {
  border-color: #006BFF;
}
.form-group-custom textarea {
  min-height: 130px;
  resize: vertical;
}
.form-success {
  display: none;
  background: #edfaf4;
  border: 1px solid #b2dfdb;
  border-radius: 10px;
  padding: 20px 24px;
  color: #1b5e20;
  font-weight: 600;
  font-size: 15px;
  margin-top: 15px;
}
.form-error-msg {
  color: red;
  font-size: 12px;
  margin-top: 4px;
}

/* FAQ */
.faq-item {
  border: 1px solid #F2F2F2;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15px;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-question:hover { color: #006BFF; }
.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #006BFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s;
  color: #006BFF;
  font-size: 14px;
  font-weight: 800;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  font-weight: 500;
}

/* Why me */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.why-card {
  flex: 1 1 calc(50% - 10px);
  min-width: 230px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #F2F2F2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-num {
  flex-shrink: 0;
  font-size: 36px;
  font-weight: 800;
  color: #006BFF;
  opacity: 0.18;
  line-height: 1;
}
.why-text h3 {
  font-weight: 700;
  font-size: 15px;
  color: #222;
  margin-bottom: 5px;
}
.why-text p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Breadcrumb fix for this page */
.page-breadcrumb {
  margin-top: -40px;
  margin-bottom: 0;
}

/* Divider */
.section-divider {
  border: 0;
  border-top: 1px solid #F2F2F2;
  margin: 50px 0;
}

@media (max-width: 991px) {
  .liqpay-hero h1 { font-size: 30px; }
  .liqpay-hero { padding: 40px 0 50px; }
  .hero-img-wrap { margin-top: 30px; }
  .adv-card { flex: 1 1 calc(50% - 10px); }
  .section-title { font-size: 26px; }
  .contact-section { padding: 30px 20px; }
  .pricing-card { padding: 28px 20px; }
  .pricing-card .price-tag { font-size: 36px; }
  .features-check { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .adv-card { flex: 1 1 100%; }
  .why-card { flex: 1 1 100%; }
  .features-check li { min-width: 100%; }
  .hero-cta { width: 100%; text-align: center; }
  .features-check { grid-template-columns: 1fr; }
}

/* ===== Gallery ===== */
.gallery-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.gallery-scroll:active { cursor: grabbing; }
.gallery-scroll::-webkit-scrollbar { height: 5px; }
.gallery-scroll::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: #006BFF; border-radius: 10px; }
.gallery-item {
  flex-shrink: 0;
  scroll-snap-align: start;
  /* width: 280px; */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8F0FF;
  box-shadow: 0 4px 16px rgba(0,107,255,0.08);
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.gallery-item:hover {
  box-shadow: 0 8px 28px rgba(0,107,255,0.18);
  transform: translateY(-2px);
}
.gallery-item img {
  width: 280px;
  height: 190px;
  object-fit: cover;
  display: block;
}
.gallery-item-caption {
  background: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  border-top: 1px solid #F0F4FF;
}
.gallery-zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(0,107,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; }
@media (max-width: 600px) {
  .gallery-item { width: 240px; }
  .gallery-item img { width: 240px; height: 163px; }
}

/* ===== Gallery / Swiper ===== */
.gallery-swiper-wrap {
  position: relative;
  padding-bottom: 44px;
}
.swiper-slide .gallery-item a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8F0FF;
  box-shadow: 0 4px 16px rgba(0,107,255,0.08);
  transition: box-shadow .2s, transform .2s;
  position: relative;
  text-decoration: none;
}
.swiper-slide .gallery-item a:hover {
  box-shadow: 0 8px 28px rgba(0,107,255,0.18);
  transform: translateY(-2px);
}
.swiper-slide .gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.gallery-item-caption {
  background: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  border-top: 1px solid #F0F4FF;
}
.gallery-zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(0,107,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.swiper-slide .gallery-item a:hover .gallery-zoom-icon { opacity: 1; }
/* Swiper navigation */
#liqpay-swiper {
  padding-bottom: 40px;
}
#liqpay-swiper .swiper-button-prev,
#liqpay-swiper .swiper-button-next {
  width: 38px;
  height: 38px;
  background: #006BFF;
  border-radius: 50%;
  color: #fff;
}
#liqpay-swiper .swiper-button-prev:hover,
#liqpay-swiper .swiper-button-next:hover { background: #0050BF; }
#liqpay-swiper .swiper-button-prev::after,
#liqpay-swiper .swiper-button-next::after { font-size: 14px; font-weight: 700; }
#liqpay-swiper .swiper-pagination-bullet { background: #006BFF; opacity: 0.3; }
#liqpay-swiper .swiper-pagination-bullet-active { opacity: 1; }