@charset "UTF-8";
.card-lift {
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-lift:hover {
  transform: translateY(-8px);
  border-color: var(--blue-200);
  box-shadow: 0 18px 40px rgba(25, 64, 176, 0.12);
}

.badge.badge-wordpress {
  background: #eef3fb;
  color: #21759b;
}

.badge.badge-billing {
  background: #eaf6ee;
  color: #2e7d32;
}

.badge.badge-joomla {
  background: #eef0fb;
  color: #3949ab;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}
.check-list li:before {
  content: "✓";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eaf1ff;
  color: var(--blue-200);
  font-size: 12px;
  font-weight: 700;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.step-num {
  background: #eaf1ff;
  color: var(--blue-200);
  font-size: 22px;
  font-weight: 800;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-200);
  transition: gap 0.2s ease;
}

.link-arrow:hover,
.link-arrow:focus {
  gap: 10px;
  color: var(--blue-200);
}

#main-content {
  margin-top: -50px;
}

.product-hero {
  background: linear-gradient(180deg, var(--blue-200) 0%, rgba(25, 64, 176, 0) 240px), linear-gradient(135deg, var(--blue-600) 0%, var(--blue-200) 50%, var(--pp-hero-end, var(--blue-100)) 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.product-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--pp-blob-rgb, 22, 163, 254), 0.22) 0%, rgba(var(--pp-blob-rgb, 22, 163, 254), 0) 70%);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}
.product-hero .container {
  position: relative;
  z-index: 1;
}
.product-hero h2 {
  line-height: 1.15;
}

.txt-white-soft {
  color: rgba(255, 255, 255, 0.65);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  padding: 7px 16px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.hero-stat-pill strong {
  color: #fff;
}

.hero-visual-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  color: #fff;
}

.logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 100%;
}
.logo-box img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  margin-inline: auto;
}

.hero-stat-pill svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.hero-source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.hero-source-link:hover {
  color: #fff;
  text-decoration: underline;
}

.btn.border-2 {
  --bs-btn-border-width: 2px;
}

.hero-cta {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.cta-buttons {
  width: 0;
  min-width: 100%;
  justify-content: center;
}

@media (max-width: 575.98px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    --bs-btn-font-size: 1rem;
    font-weight: 500 !important;
  }
}
.payment-type-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.payment-type-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.payment-type-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  margin-top: 20px;
}

.ptype-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.ptype-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.ptype-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

.provider-mini-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.provider-mini-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

a.provider-mini-pill--more {
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
a.provider-mini-pill--more:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--pp-accent, var(--blue-200));
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--blue-400);
  margin-top: 4px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-accent, var(--blue-200));
  margin-bottom: 12px;
}

.mw-narrow {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feat-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.feat-card:hover {
  box-shadow: 0 12px 36px rgba(25, 64, 176, 0.1);
  transform: translateY(-4px);
}

.feat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feat-card-icon.blue {
  background: rgba(22, 163, 254, 0.1);
  color: var(--blue-100);
}
.feat-card-icon.navy {
  background: rgba(25, 64, 176, 0.1);
  color: var(--blue-200);
}
.feat-card-icon.green {
  background: rgba(35, 163, 119, 0.1);
  color: var(--green-300);
}
.feat-card-icon.orange {
  background: rgba(237, 137, 54, 0.1);
  color: #ed8936;
}
.feat-card-icon.teal {
  background: rgba(56, 178, 172, 0.1);
  color: #38b2ac;
}
.feat-card-icon.indigo {
  background: rgba(76, 81, 191, 0.1);
  color: #4c51bf;
}

.feat-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 0.9rem;
  color: var(--blue-400);
  line-height: 1.6;
  margin: 0;
}

.ptype-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  height: 100%;
  border: 2px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.ptype-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.ptype-card.onetime::before {
  background: linear-gradient(90deg, var(--blue-100), var(--blue-200));
}
.ptype-card.subscription::before {
  background: linear-gradient(90deg, var(--green-300), #00b4d8);
}
.ptype-card:hover {
  border-color: var(--blue-100);
  box-shadow: 0 16px 48px rgba(25, 64, 176, 0.1);
}

.ptype-header-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}
.ptype-header-icon.onetime {
  background: rgba(22, 163, 254, 0.1);
  color: var(--blue-100);
}
.ptype-header-icon.subscription {
  background: rgba(35, 163, 119, 0.1);
  color: var(--green-300);
}

.ptype-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 10px;
}

.ptype-card .ptype-desc {
  color: var(--blue-400);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.use-case-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.use-case-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--blue-400);
}
.use-case-list li:last-child {
  border-bottom: none;
}
.use-case-list .uc-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}
.use-case-list .uc-icon.blue {
  background: rgba(22, 163, 254, 0.12);
  color: var(--blue-100);
}
.use-case-list .uc-icon.green {
  background: rgba(35, 163, 119, 0.12);
  color: var(--green-300);
}

.use-case-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}
.use-case-list--grid li:nth-last-child(-n+2):not(:nth-child(odd)) {
  border-bottom: none;
}

.how-step {
  text-align: center;
  padding: 16px;
}

.how-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pp-accent, var(--blue-200));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.how-step h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.85rem;
  color: var(--blue-400);
  line-height: 1.6;
}

.providers-strip {
  background: var(--pp-strip-bg, var(--blue-600));
  padding: 56px 0;
}
.providers-strip .section-eyebrow {
  color: var(--blue-50);
}
.providers-strip h2 {
  color: #fff;
}
.providers-strip .txt-white-soft {
  color: rgba(var(--blue-50-rgb), 0.8);
}

.provider-logo-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  transition: background 0.2s, transform 0.2s;
}
.provider-logo-pill:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}
.provider-logo-pill img {
  max-height: 32px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.provider-logo-pill--more {
  border: 1px dashed rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
  text-decoration: none;
}
.provider-logo-pill--more:hover {
  color: #fff;
}

.why-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px;
}

.why-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--blue-30);
  color: var(--blue-200);
}

.why-card h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 4px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--blue-400);
  margin: 0;
  line-height: 1.55;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: var(--blue-600);
  font-size: 0.95rem;
  gap: 16px;
}
.faq-question:hover {
  background: var(--blue-30);
}
.faq-question .faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-200);
  transition: transform 0.25s;
  font-size: 0.85rem;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--blue-400);
  line-height: 1.65;
  background: #fff;
}

.faq-item.open .faq-answer {
  display: block;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--pp-accent, var(--blue-200));
  color: #fff;
}

.cta-banner {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--pp-accent, var(--blue-200)) 100%);
  border-radius: 24px;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(var(--pp-blob-rgb, 22, 163, 254), 0.12);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
}

.checkout-screenshot-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(18, 24, 58, 0.18), 0 4px 16px rgba(18, 24, 58, 0.1);
  border: 1px solid var(--gray-200);
  max-width: 908px;
  margin: 0 auto;
}
.checkout-screenshot-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.install-hero {
  background: #fff;
  padding: 80px 0 60px;
}
.install-hero h2,
.install-hero p,
.install-hero .lead {
  color: #1a1a1a;
}
.install-hero .badge.bg-white {
  border: 1px solid var(--gray-200);
}
.install-hero .logo-wrap {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(25, 64, 176, 0.08);
}

.install-hero-logo {
  max-width: 280px;
}

.screenshot-container--bare {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}
.screenshot-container--bare img {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/*# sourceMappingURL=components.css.map */