/* ── VARIABLES ── */
:root {
  --pm-primary: #6D28D9;
  --pm-secondary: #10B981;
  --pm-dark: #0F0A1E;
  --pm-dark-nav: #1A0F3C;
  --pm-text: #1A1033;
  --pm-muted: #6B7280;
  --pm-light: #F5F3FF;
  --pm-card: #FFFFFF;
  --pm-border: #E5E0F7;
  --pm-success: #059669;
  --pm-gradient-end: #4C1D95;
  --pm-radius: 20px;
  --pm-radius-lg: 20px;
  --pm-radius-pill: 50px;
  --pm-shadow: 0 8px 32px rgba(109, 40, 217, 0.12);
  --pm-shadow-hover: 0 12px 40px rgba(109, 40, 217, 0.15);
  --pm-transition: 0.25s ease;
  --pm-page-padding-x: clamp(1.75rem, 6vw, 4rem);
  --pm-section-padding-y: clamp(4rem, 8vw, 6.5rem);
}

/* ── GLOBAL PAGE HORIZONTAL PADDING ── */
body {
  overflow-x: hidden;
}

main.pk-site-main {
  min-height: 1px;
}

body .container,
body .container-sm,
body .container-md,
body .container-lg,
body .container-xl,
body .container-xxl {
  padding-left: var(--pm-page-padding-x);
  padding-right: var(--pm-page-padding-x);
}

.navbar > .container {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.pk-footer > .container {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--pm-text);
  background: #fff;
  margin: 0;
}

a {
  text-decoration: none;
  transition: color var(--pm-transition);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.pk-brand-logo {
  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}

.navbar .pk-brand-logo,
.pk-logo .pk-brand-logo {
  height: 36px;
  max-width: 200px;
}

.pk-footer-logo .pk-brand-logo,
.pk-brand-logo--footer {
  height: 32px;
  max-width: 180px;
}

.pk-brand-logo--admin {
  height: 32px;
  max-width: 100%;
}

@media (max-width: 375px) {
  .navbar .pk-brand-logo {
    height: 32px;
    max-width: 150px;
  }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  color: var(--pm-dark);
  font-weight: 700;
  line-height: 1.3;
}

.pk-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--pm-dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.pk-section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--pm-primary);
  margin: 12px auto 0;
}

.text-start .pk-section-title::after,
.pk-section-title.text-start::after {
  margin-left: 0;
  margin-right: auto;
}

.pk-section-subtitle {
  font-size: 18px;
  color: var(--pm-muted);
  max-width: 600px;
}

.pk-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--pm-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.pk-hero-subtitle {
  font-size: 1.125rem;
  color: var(--pm-muted);
  max-width: 540px;
  margin-bottom: 1.5rem;
}

/* ── BUTTONS ── */
.btn-pk-primary {
  background: var(--pm-primary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--pm-radius);
  font-weight: 600;
  font-size: 15px;
  transition: var(--pm-transition);
  cursor: pointer;
  display: inline-block;
}

.btn-pk-primary:hover {
  background: #5B21B6;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--pm-shadow);
}

.btn-pk-outline {
  border: 2px solid var(--pm-primary);
  color: var(--pm-primary);
  background: transparent;
  padding: 10px 26px;
  border-radius: var(--pm-radius);
  font-weight: 600;
  transition: var(--pm-transition);
  display: inline-block;
}

.btn-pk-outline:hover {
  background: var(--pm-primary);
  color: #fff;
}

.btn-pk-white {
  background: #fff;
  color: var(--pm-primary);
  border: none;
  padding: 12px 28px;
  border-radius: var(--pm-radius);
  font-weight: 600;
  transition: var(--pm-transition);
}

.btn-pk-white:hover {
  background: var(--pm-light);
  color: var(--pm-primary);
  transform: translateY(-1px);
}

.btn-pk-outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: 10px 26px;
  border-radius: var(--pm-radius);
  font-weight: 600;
  transition: var(--pm-transition);
}

.btn-pk-outline-white:hover {
  background: #fff;
  color: var(--pm-primary);
}

/* ── NAVBAR ── */
.navbar {
  transition: box-shadow 0.3s;
  padding: 0.75rem 0;
}

body:not(.pm-dark-hero-page) .navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  background: #fff !important;
}

.pk-logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.navbar .nav-link {
  color: var(--pm-text);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--pm-primary);
}

/* Products dropdown - open on hover (desktop) */
@media (min-width: 992px) {
  .navbar .pk-nav-dropdown {
    position: relative;
  }

  .navbar .pk-nav-dropdown > .dropdown-toggle {
    position: relative;
  }

  /* Invisible bridge below "Products" so cursor can reach the menu */
  .navbar .pk-nav-dropdown > .dropdown-toggle::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
  }

  .navbar .pk-nav-dropdown > .dropdown-menu {
    display: block;
    top: 100%;
    left: 50%;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(4px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  /* Invisible bridge above menu (covers gap between link and panel) */
  .navbar .pk-nav-dropdown > .dropdown-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
  }

  .navbar .pk-nav-dropdown:hover > .dropdown-menu,
  .navbar .pk-nav-dropdown:focus-within > .dropdown-menu,
  .navbar .pk-nav-dropdown.pk-nav-dropdown--open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  .navbar .pk-nav-dropdown:hover > .dropdown-toggle,
  .navbar .pk-nav-dropdown:focus-within > .dropdown-toggle,
  .navbar .pk-nav-dropdown.pk-nav-dropdown--open > .dropdown-toggle {
    color: var(--pm-primary);
  }

  .navbar .pk-nav-dropdown:hover > .dropdown-toggle::after,
  .navbar .pk-nav-dropdown:focus-within > .dropdown-toggle::after,
  .navbar .pk-nav-dropdown.pk-nav-dropdown--open > .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .navbar .pk-nav-dropdown > .dropdown-toggle::after {
    transition: transform 0.2s ease;
  }
}

.pk-nav-dropdown-menu {
  border: 1px solid var(--pm-border);
  border-radius: 12px;
  padding: 8px;
  margin-top: 0;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  min-width: 200px;
}

@keyframes pk-dropdown-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pk-nav-dropdown-menu .dropdown-item {
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--pm-transition), color var(--pm-transition);
}

.pk-nav-dropdown-menu .dropdown-item:hover,
.pk-nav-dropdown-menu .dropdown-item:focus {
  background: rgba(109, 40, 217, 0.08);
  color: var(--pm-primary);
}

.pk-nav-dropdown-menu .dropdown-item.active {
  background: var(--pm-primary);
  color: #fff;
}

.pk-nav-actions .btn {
  white-space: nowrap;
}

/* ── HERO ── */
.pk-hero {
  position: relative;
  background: #fff;
  padding: var(--pm-section-padding-y) 0;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.min-vh-90 {
  min-height: 70vh;
}

.pk-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(109, 40, 217, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(109, 40, 217, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.pk-hero .container {
  position: relative;
  z-index: 1;
}

.pk-trust-micro {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--pm-muted);
  background: var(--pm-light);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--pm-border);
}

.pk-trust-micro i {
  color: var(--pm-primary);
}

.pk-dashboard-illustration {
  background: #fff;
  border-radius: var(--pm-radius-lg);
  padding: 1rem;
  box-shadow: var(--pm-shadow);
}

/* ── TRUST BAR ── */
.pk-trust-bar {
  background: #F5F3FF;
  border-top: 1px solid var(--pm-border);
  border-bottom: 1px solid var(--pm-border);
  padding: 1.25rem 0;
}

.pk-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pm-text);
  justify-content: center;
}

.pk-trust-item i {
  color: var(--pm-primary);
  font-size: 1.1rem;
}

/* ── PAYMENT METHODS ── */
.pk-payment-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 1.5rem;
  height: 100%;
  transition: var(--pm-transition);
  text-align: center;
}

.pk-payment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pm-shadow);
  border-color: var(--pm-primary);
}

.pk-payment-card .icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(109, 40, 217, 0.08);
  border-radius: var(--pm-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--pm-primary);
  font-size: 1.5rem;
}

.pk-payment-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.pk-payment-card p {
  font-size: 0.875rem;
  color: var(--pm-muted);
  margin: 0;
}

/* ── FEATURES ── */
.feature-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 28px 24px;
  transition: var(--pm-transition);
  height: 100%;
}

.feature-card:hover {
  border-left: 4px solid var(--pm-primary);
  box-shadow: var(--pm-shadow);
  transform: translateY(-4px);
}

.feature-card .icon-box {
  width: 52px;
  height: 52px;
  background: rgba(109, 40, 217, 0.08);
  border-radius: var(--pm-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--pm-primary);
  font-size: 22px;
}

.feature-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--pm-dark);
}

.feature-card-desc {
  font-size: 0.9375rem;
  color: var(--pm-muted);
  margin: 0;
}

/* ── HOW IT WORKS ── */
.pk-steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.pk-step-item {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pm-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: var(--pm-border);
  margin-top: 26px;
  min-width: 20px;
}

.pk-step-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.pk-step-item p {
  font-size: 0.875rem;
  color: var(--pm-muted);
  margin: 0;
}

/* ── USE CASES ── */
.pk-use-cases .nav-tabs {
  border-bottom: 2px solid var(--pm-border);
  flex-wrap: nowrap;
  overflow-x: auto;
}

.pk-use-cases .nav-link {
  color: var(--pm-muted);
  font-weight: 500;
  border: none;
  white-space: nowrap;
}

.pk-use-cases .nav-link.active {
  color: var(--pm-primary);
  border-bottom: 2px solid var(--pm-primary);
  background: transparent;
}

.pk-use-case-panel {
  padding: 2rem 0;
}

.pk-use-case-panel ul {
  padding-left: 1.25rem;
}

.pk-use-case-panel li {
  margin-bottom: 0.5rem;
  color: var(--pm-text);
}

/* ── MERCHANT BENEFITS ── */
.pk-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pk-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.pk-benefit-list li i {
  color: var(--pm-success);
  margin-top: 4px;
  flex-shrink: 0;
}

.pk-settlement-mockup {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  overflow: hidden;
  box-shadow: var(--pm-shadow);
}

.pk-settlement-mockup .mockup-header {
  background: var(--pm-primary);
  color: #fff;
  padding: 1rem 1.25rem;
  font-weight: 600;
}

.pk-settlement-mockup table {
  width: 100%;
  margin: 0;
  font-size: 0.875rem;
}

.pk-settlement-mockup th,
.pk-settlement-mockup td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--pm-border);
}

.pk-settlement-mockup th {
  background: var(--pm-light);
  font-weight: 600;
  color: var(--pm-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* ── FAQ ── */
.pk-faq .accordion-button {
  font-weight: 600;
  color: var(--pm-dark);
  padding: 1.25rem;
}

.pk-faq .accordion-button:not(.collapsed) {
  background: rgba(109, 40, 217, 0.05);
  color: var(--pm-primary);
  box-shadow: none;
}

.pk-faq .accordion-button:focus {
  box-shadow: none;
  border-color: var(--pm-border);
}

.pk-faq .accordion-body {
  color: var(--pm-muted);
  padding: 0 1.25rem 1.25rem;
}

/* ── PRICING FAQ ── */
.pk-pricing-faq-section {
  background: linear-gradient(180deg, #F5F3FF 0%, #fff 100%);
}

.pk-pricing-faq-head {
  margin-bottom: 2.5rem;
}

.pk-pricing-faq-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pm-primary);
  background: rgba(109, 40, 217, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.pk-pricing-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pk-pricing-faq-item {
  border: 1px solid var(--pm-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: box-shadow var(--pm-transition), border-color var(--pm-transition);
}

.pk-pricing-faq-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(109, 40, 217, 0.35);
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.1);
}

.pk-pricing-faq .accordion-button {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--pm-dark);
  background: #fff;
  box-shadow: none;
}

.pk-pricing-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.06) 0%, #fff 100%);
  color: var(--pm-primary);
}

.pk-pricing-faq .accordion-button::after {
  flex-shrink: 0;
  margin-left: auto;
  background-size: 1rem;
}

.pk-pricing-faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.pk-pricing-faq-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(109, 40, 217, 0.1);
  color: var(--pm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.pk-pricing-faq-item:has(.accordion-button:not(.collapsed)) .pk-pricing-faq-icon {
  background: var(--pm-primary);
  color: #fff;
}

.pk-pricing-faq-q {
  text-align: left;
  flex: 1;
}

.pk-pricing-faq-answer {
  padding: 0 1.35rem 1.25rem 4.5rem;
  font-size: 15px;
  line-height: 1.7;
  color: var(--pm-muted);
  border-top: 1px solid #F5F3FF;
}

@media (max-width: 576px) {
  .pk-pricing-faq-answer {
    padding-left: 1.35rem;
  }

  .pk-pricing-faq .accordion-button {
    padding: 1rem;
    gap: 10px;
  }

  .pk-pricing-faq-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ── CTA BANNER ── */
.pk-cta-banner {
  background: var(--pm-primary);
  padding: 80px 0;
  text-align: center;
}

.pk-cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pk-cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ── PRICING CARDS ── */
.pricing-card {
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 36px;
  background: #fff;
  height: 100%;
  transition: var(--pm-transition);
}

.pricing-card:hover {
  box-shadow: var(--pm-shadow);
}

.pricing-card.featured {
  border: 2px solid var(--pm-primary);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pm-primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pm-dark);
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--pm-muted);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--pm-border);
  font-size: 0.9375rem;
}

.pricing-card ul li i {
  color: var(--pm-success);
  margin-right: 8px;
}

/* ── FORMS ── */
.pk-form-section {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 2rem;
}

.pk-form-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--pm-border);
}

.form-label {
  font-weight: 500;
  color: var(--pm-dark);
  margin-bottom: 0.35rem;
}

.form-control,
.form-select {
  border-radius: var(--pm-radius);
  border: 1px solid var(--pm-border);
  padding: 0.65rem 0.85rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--pm-primary);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.15);
}

.pk-contact-info {
  background: var(--pm-light);
  border-radius: var(--pm-radius-lg);
  padding: 2rem;
  height: 100%;
}

.pk-contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pk-contact-info-item i {
  color: var(--pm-primary);
  font-size: 1.25rem;
  margin-top: 4px;
}

/* ── PAGE HERO ── */
.pk-page-hero {
  background: linear-gradient(135deg, var(--pm-light) 0%, #fff 100%);
  padding: var(--pm-section-padding-y) 0 calc(var(--pm-section-padding-y) * 0.65);
  text-align: center;
  border-bottom: 1px solid var(--pm-border);
}

.pk-page-hero .container {
  padding-left: var(--pm-page-padding-x);
  padding-right: var(--pm-page-padding-x);
}

.pk-page-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.pk-page-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 0;
  margin-top: 1rem;
}

.pk-page-hero .breadcrumb-item a {
  color: var(--pm-primary);
}

/* ── LEGAL PAGES ── */
.pk-legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.container .pk-legal-content {
  padding-left: 0;
  padding-right: 0;
}

article.pk-legal > .container {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.pk-legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.pk-legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.pk-legal-content p,
.pk-legal-content li {
  color: var(--pm-muted);
  margin-bottom: 1rem;
}

.pk-legal-content ul {
  padding-left: 1.5rem;
}

/* ── FOOTER ── */
.pk-footer {
  background: var(--pm-dark);
  color: #fff;
}

.pk-footer-logo {
  color: #fff !important;
  font-weight: 700;
  font-size: 1.25rem;
}

.pk-footer-logo svg {
  color: var(--pm-primary);
}

.pk-footer-tagline {
  color: #94A3B8;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.pk-footer-heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pk-footer-links li {
  margin-bottom: 0.5rem;
}

.pk-footer-links a {
  color: #94A3B8;
  font-size: 0.9375rem;
}

.pk-footer-links a:hover {
  color: #fff;
}

.pk-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 8px;
  transition: var(--pm-transition);
}

.pk-social-links a:hover {
  background: var(--pm-primary);
  color: #fff;
}

.pk-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  font-size: 0.875rem;
}

.pk-badge-pci {
  font-size: 0.8125rem;
  color: #94A3B8;
}

/* ── SECTIONS ── */
.pk-section {
  padding: var(--pm-section-padding-y) 0;
}

.pk-section-alt {
  background: var(--pm-light);
}

/* ── CODE BLOCKS ── */
.pk-code-block {
  background: var(--pm-dark);
  color: #E5E0F7;
  border-radius: var(--pm-radius-lg);
  padding: 1.5rem;
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.6;
}

.pk-code-block code {
  color: inherit;
  font-family: 'SFMono-Regular', Consolas, monospace;
}

/* ── CHECKOUT MOCKUP ── */
.pk-checkout-mockup {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: var(--pm-shadow);
}

.pk-checkout-mockup-header {
  background: var(--pm-primary);
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

.pk-checkout-mockup-body {
  padding: 1.5rem;
}

.pk-checkout-amount {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.pk-checkout-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  margin-bottom: 0.5rem;
  cursor: default;
}

.pk-checkout-method.active {
  border-color: var(--pm-primary);
  background: rgba(109, 40, 217, 0.05);
}

/* ── TABLES ── */
.pk-table {
  background: #fff;
  border-radius: var(--pm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pm-border);
}

.pk-table th {
  background: var(--pm-light);
  font-weight: 600;
  color: var(--pm-muted);
  font-size: 0.875rem;
}

/* ── UTILITIES ── */
.text-pk-primary {
  color: var(--pm-primary) !important;
}

.text-pk-muted {
  color: var(--pm-muted) !important;
}

.bg-pk-light {
  background: var(--pm-light) !important;
}

.pk-content-block {
  padding: 60px 0;
}

.pk-content-block:nth-child(even) {
  background: var(--pm-light);
}

/* ── ANIMATIONS ── */
@keyframes pk-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pk-animate-in {
  animation: pk-fade-up 0.6s ease forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .pk-steps-row {
    flex-direction: column;
    gap: 2rem;
  }

  .step-connector {
    display: none;
  }

  .pk-nav-actions {
    margin-top: 1rem;
    width: 100%;
  }

  .pk-nav-actions .btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .pk-section,
  .pk-hero,
  .pk-cta-banner,
  .pk-page-hero {
    padding: 48px 0;
  }

  .pk-section-title {
    font-size: 26px;
  }

  .pk-trust-item {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }

  .min-vh-90 {
    min-height: auto;
  }

  .pk-hero {
    min-height: auto;
  }
}

@media (max-width: 375px) {
  .btn-pk-primary,
  .btn-pk-outline {
    width: 100%;
    text-align: center;
  }

  .pk-hero-badges {
    flex-direction: column;
  }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--pm-primary);
}

.stats-bar .stat-num {
  font-size: 28px;
  font-weight: 800;
}

.stats-bar .stat-label {
  font-size: 13px;
  opacity: 0.8;
}

/* ── HERO ILLUSTRATION ── */
.hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pk-hero-visual {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
}

.pk-hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(560px, 78vh);
  object-fit: contain;
  object-position: center;
}

@media (min-width: 992px) {
  .pk-hero-visual {
    max-width: 100%;
  }

  .pk-hero-image {
    max-height: min(820px, 92vh);
  }
}

@media (max-width: 991px) {
  .pk-hero-visual {
    max-width: 100%;
    margin-top: 0.5rem;
  }

  .pk-hero-image {
    max-height: min(520px, 72vh);
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .float-badge.badge-1 {
    right: 0;
    top: 5%;
  }

  .float-badge.badge-2 {
    left: 0;
    bottom: 8%;
  }
}

.dash-card {
  background: #fff;
  border: 1px solid #E5E0F7;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(109, 40, 217, 0.12);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dot.green {
  background: #10B981;
}

.dash-label {
  font-size: 12px;
  color: #6B7280;
}

.dash-stat {
  font-size: 26px;
  font-weight: 800;
  color: #0F0A1E;
  margin-bottom: 16px;
}

.dash-badge {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
}

.dash-badge.success {
  background: #DCFCE7;
  color: #047857;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  margin-bottom: 16px;
}

.bar {
  flex: 1;
  background: #6D28D9;
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
}

.bar:nth-child(6) {
  background: #F97316;
  opacity: 1;
}

.bar-h-40 { height: 40%; }
.bar-h-45 { height: 45%; }
.bar-h-50 { height: 50%; }
.bar-h-65 { height: 65%; }
.bar-h-70 { height: 70%; }
.bar-h-80 { height: 80%; }
.bar-h-90 { height: 90%; }

.dash-methods {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.method-pill {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: #F5F3FF;
  color: #6D28D9;
  border: 1px solid #DDD6FE;
}

.float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid #E5E0F7;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.float-badge.badge-1 {
  top: 10%;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.float-badge.badge-2 {
  bottom: 15%;
  left: -20px;
  animation: float 3.5s ease-in-out 0.5s infinite;
}

/* ── PRICING HIGHLIGHT ── */
.pk-pricing-spotlight {
  max-width: 520px;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .pk-pricing-spotlight {
    margin-inline: 0;
  }
}

.pk-pricing-spotlight-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--pm-dark);
  margin-bottom: 1.25rem;
}

.pk-pricing-spotlight-accent {
  color: var(--pm-primary);
  font-weight: 700;
}

.pk-pricing-spotlight-rate {
  margin-bottom: 1rem;
}

.pk-pricing-spotlight-pct {
  font-size: clamp(4.5rem, 12vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--pm-dark);
  letter-spacing: -0.02em;
}

.pk-pricing-spotlight-desc {
  font-size: 0.9375rem;
  color: var(--pm-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.pk-pricing-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  border-radius: 10px;
}

.pk-pricing-spotlight-cta .bi-arrow-right {
  font-size: 1.1em;
  transition: transform var(--pm-transition);
}

.pk-pricing-spotlight-cta:hover .bi-arrow-right {
  transform: translateX(3px);
}

.pricing-big-number {
  font-size: clamp(4rem, 10vw, 96px);
  font-weight: 900;
  color: var(--pm-primary);
  line-height: 1;
}

.pricing-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.pricing-hero-image {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 16px;
}

@media (max-width: 991px) {
  .pricing-hero-visual {
    max-width: 100%;
    margin-top: 8px;
  }

  .pricing-hero-image {
    max-height: 360px;
  }
}

@media (max-width: 375px) {
  .pricing-hero-image {
    max-height: 280px;
  }
}

.pricing-quick-card {
  background: #F5F3FF;
  border: 1px solid #E5E0F7;
  border-radius: 16px;
  padding: 24px;
}

.pqc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #F5F3FF;
}

.pqc-row:last-child {
  border-bottom: none;
}

.pqc-method {
  font-size: 14px;
  color: #1A1033;
}

.pqc-rate {
  font-size: 16px;
  font-weight: 700;
  color: var(--pm-primary);
}

.pqc-rate.zero {
  color: #059669;
}

/* ── CODE BLOCK ── */
.code-block {
  background: #0F0A1E;
  color: #7DD3FC;
  border-radius: 12px;
  padding: 24px;
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  margin: 0;
}

.code-block .json-key {
  color: #C4B5FD;
}

.code-block .json-val {
  color: #86EFAC;
}

.code-block .comment {
  color: #6B7280;
}

.code-block .code-kw {
  color: #C4B5FD;
}

.integration-steps .step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pm-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CHECKOUT MOCKUP ── */
.checkout-mockup {
  background: #fff;
  border: 1px solid #E5E0F7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  max-width: 520px;
  margin: 0 auto;
}

.checkout-header {
  background: #F5F3FF;
  padding: 16px 20px;
  border-bottom: 1px solid #E5E0F7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-body {
  padding: 20px;
}

.checkout-tabs {
  display: flex;
  border-bottom: 1px solid #E5E0F7;
  margin-bottom: 16px;
}

.checkout-tab {
  padding: 10px 16px;
  font-size: 14px;
  color: #6B7280;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.checkout-tab.active {
  color: #6D28D9;
  border-bottom-color: #6D28D9;
  font-weight: 600;
}

.checkout-pay-btn {
  background: #6D28D9;
  color: #fff;
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  cursor: pointer;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: #fff;
  border: 1px solid #E5E0F7;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
}

.testimonial-quote {
  font-size: 15px;
  color: #1A1033;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-quote::before {
  content: '"';
  font-size: 40px;
  color: #DDD6FE;
  line-height: 0;
  vertical-align: -16px;
  margin-right: 4px;
}

.testimonial-role {
  font-size: 13px;
  color: #6B7280;
  margin-top: 4px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
  background: #E5E0F7;
  flex-shrink: 0;
}

.stars {
  color: #F97316;
  font-size: 13px;
}

/* ── INTEGRATION SECTION ── */
.pk-sdk-picker {
  gap: 0.5rem;
}

.sdk-pill {
  display: inline-block;
  background: #F5F3FF;
  border: 1px solid #E5E0F7;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #1A1033;
  cursor: pointer;
  transition: background var(--pm-transition), color var(--pm-transition), border-color var(--pm-transition);
}

.sdk-pill:hover,
.sdk-pill.is-active {
  background: var(--pm-primary);
  color: #fff;
  border-color: var(--pm-primary);
}

.sdk-pill:focus-visible {
  outline: 2px solid var(--pm-primary);
  outline-offset: 2px;
}

/* ── DASHBOARD PREVIEW MOCKUP ── */
.dash-preview {
  background: #0F0A1E;
  border-radius: 16px;
  padding: 20px;
}

.dash-preview table {
  width: 100%;
  color: #E5E0F7;
  font-size: 13px;
}

.dash-preview th {
  color: #6B7280;
  font-weight: 500;
  padding: 8px 12px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #1A1033;
}

.dash-preview td {
  padding: 12px;
  border-bottom: 1px solid #1A1033;
}

.status-success {
  background: #064E3B;
  color: #6EE7B7;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.status-pending {
  background: #78350F;
  color: #FCD34D;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* ── TRUST/COMPLIANCE ── */
.compliance-card {
  text-align: center;
  padding: 24px 16px;
}

.compliance-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 12px;
  background: rgba(109, 40, 217, 0.08);
  color: var(--pm-primary);
}

.compliance-title {
  font-size: 14px;
  font-weight: 700;
  color: #0F0A1E;
}

.compliance-desc {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
}

.pm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.pm-badge-upi {
  background: #6B48FF10;
  color: #6B48FF;
}

.pm-badge-card {
  background: #6D28D910;
  color: #6D28D9;
}

.volume-card {
  border: 1px solid #E5E0F7;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  background: #fff;
}

.volume-card.popular {
  border-color: var(--pm-primary);
  border-width: 2px;
  position: relative;
}

.volume-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pm-primary);
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

.flow-step {
  text-align: center;
  padding: 20px;
}

.flow-arrow {
  color: var(--pm-muted);
  font-size: 24px;
}

/* ── PAGE SECTIONS ── */
.pk-section-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--pm-dark);
}

.pk-enterprise-cta {
  background: linear-gradient(120deg, var(--pm-primary) 0%, var(--pm-dark) 100%);
}

.pk-rate-table th {
  font-weight: 600;
  font-size: 0.875rem;
}

/* ── PRICING RATE SHEETS ── */
.pk-rate-sheets {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pk-rate-sheet {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--pm-border);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: box-shadow var(--pm-transition), transform var(--pm-transition);
}

.pk-rate-sheet:hover {
  box-shadow: 0 16px 48px rgba(109, 40, 217, 0.1);
}

.pk-rate-sheet-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px var(--pm-page-padding-x);
  border-bottom: 1px solid var(--pm-border);
  background: linear-gradient(135deg, #F5F3FF 0%, #fff 100%);
}

.pk-rate-sheet--domestic .pk-rate-sheet-header {
  border-left: 4px solid var(--pm-primary);
}

.pk-rate-sheet--international .pk-rate-sheet-header {
  border-left: 4px solid #7C3AED;
}

.pk-rate-sheet--payout .pk-rate-sheet-header {
  border-left: 4px solid var(--pm-secondary);
}

.pk-rate-sheet-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.pk-rate-sheet--domestic .pk-rate-sheet-icon {
  background: rgba(109, 40, 217, 0.1);
  color: var(--pm-primary);
}

.pk-rate-sheet--international .pk-rate-sheet-icon {
  background: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
}

.pk-rate-sheet--payout .pk-rate-sheet-icon {
  background: rgba(249, 115, 22, 0.12);
  color: var(--pm-secondary);
}

.pk-rate-sheet-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pm-dark);
  margin: 0 0 4px;
}

.pk-rate-sheet-count {
  font-size: 13px;
  color: var(--pm-muted);
}

.pk-rate-sheet-body {
  padding: 8px 0 12px;
}

.pk-rate-grid {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 0.45fr) minmax(140px, 0.55fr);
  gap: 12px 20px;
  align-items: center;
  padding: 14px var(--pm-page-padding-x);
}

.pk-rate-grid-head {
  padding: 12px var(--pm-page-padding-x) 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pm-muted);
  border-bottom: 1px solid var(--pm-border);
}

.pk-rate-row {
  border-bottom: 1px solid #F5F3FF;
  transition: background var(--pm-transition);
}

.pk-rate-row:last-child {
  border-bottom: none;
}

.pk-rate-row:hover {
  background: #F5F3FF;
}

.pk-rate-instrument {
  font-size: 15px;
  font-weight: 600;
  color: var(--pm-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pk-rate-instrument .bi-dot {
  font-size: 20px;
  color: var(--pm-primary);
  opacity: 0.5;
}

.pk-rate-sheet--international .pk-rate-instrument .bi-dot {
  color: #7C3AED;
}

.pk-rate-sheet--payout .pk-rate-instrument .bi-dot {
  color: var(--pm-secondary);
}

.pk-rate-value {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 15px;
  font-weight: 700;
  color: var(--pm-primary);
  background: rgba(109, 40, 217, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}

.pk-rate-sheet--international .pk-rate-value {
  color: #6D28D9;
  background: rgba(124, 58, 237, 0.08);
}

.pk-rate-sheet--payout .pk-rate-value {
  color: #C2410C;
  background: rgba(249, 115, 22, 0.1);
}

.pk-rate-value--zero {
  color: var(--pm-success);
  background: rgba(22, 163, 74, 0.1);
}

.pk-rate-notes {
  font-size: 13px;
  color: var(--pm-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pk-rate-grid,
  .pk-rate-grid-head {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: var(--pm-page-padding-x);
    padding-right: var(--pm-page-padding-x);
  }

  .pk-rate-grid-head {
    display: none;
  }

  .pk-rate-row {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .pk-rate-row [data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pm-muted);
    margin-bottom: 4px;
  }

  .pk-rate-row .pk-rate-instrument::before {
    display: none;
  }

  .pk-rate-instrument {
    font-size: 14px;
  }

  .pk-rate-notes {
    padding-bottom: 4px;
  }

  .pk-rate-sheet-header {
    padding: 18px var(--pm-page-padding-x);
  }
}

/* Form & contact cards */
.pk-form-section,
.pk-contact-card {
  padding: 2rem;
}

@media (max-width: 768px) {
  .pk-form-section,
  .pk-contact-card {
    padding: 1.5rem;
  }
}

/* ── MERCHANT ONBOARDING FORM ── */
.pk-onboarding-form {
  max-width: 100%;
}

.pk-form-block {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: box-shadow var(--pm-transition), border-color var(--pm-transition);
}

.pk-form-block:hover {
  border-color: #CBD5E1;
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.08);
}

.pk-form-block-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #F5F3FF 0%, #fff 100%);
  border-bottom: 1px solid var(--pm-border);
}

.pk-form-step {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--pm-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pk-form-block-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pm-dark);
  margin: 0 0 4px;
}

.pk-form-block-desc {
  font-size: 13px;
  color: var(--pm-muted);
}

.pk-form-block-body {
  padding: 1.5rem;
}

.pk-form-block-consent .pk-form-block-body {
  padding: 1.25rem 1.5rem;
}

.pk-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1A1033;
  margin-bottom: 6px;
}

.pk-required {
  color: #DC2626;
  font-weight: 600;
}

.pk-field-hint {
  display: block;
  font-size: 12px;
  color: var(--pm-muted);
  margin-top: 6px;
}

.pk-input,
.pk-onboarding-form .form-control,
.pk-onboarding-form .form-select {
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 15px;
  transition: border-color var(--pm-transition), box-shadow var(--pm-transition);
}

.pk-input:focus,
.pk-onboarding-form .form-control:focus,
.pk-onboarding-form .form-select:focus {
  border-color: var(--pm-primary);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.12);
  outline: none;
}

.pk-input-group {
  display: flex;
  align-items: stretch;
}

.pk-input-addon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: #F5F3FF;
  border: 1px solid #D1D5DB;
  border-right: none;
  border-radius: 10px 0 0 10px;
  color: var(--pm-muted);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.pk-input-group .pk-input,
.pk-input-group .form-control {
  border-radius: 0 10px 10px 0;
  flex: 1;
}

.pk-consent-check {
  padding: 0.25rem 0;
}

.pk-consent-check .form-check-input {
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.2em;
  border-radius: 4px;
}

.pk-consent-check .form-check-input:checked {
  background-color: var(--pm-primary);
  border-color: var(--pm-primary);
}

.pk-consent-check .form-check-label {
  font-size: 14px;
  color: var(--pm-text);
  line-height: 1.6;
}

.pk-form-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 0.5rem 0 1rem;
}

.pk-form-submit-note {
  font-size: 13px;
  color: var(--pm-muted);
}

.pk-onboarding-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pk-aside-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.pk-aside-card-accent {
  border-color: rgba(109, 40, 217, 0.2);
  background: linear-gradient(160deg, #F5F3FF 0%, #fff 70%);
}

.pk-aside-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pm-dark);
  margin-bottom: 1rem;
}

.pk-aside-title i {
  color: var(--pm-primary);
}

.pk-aside-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pk-aside-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--pm-text);
  border-bottom: 1px solid #F5F3FF;
}

.pk-aside-steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pk-aside-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.1);
  color: var(--pm-primary);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pk-aside-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.pk-aside-contact i {
  color: var(--pm-primary);
  font-size: 16px;
}

.pk-aside-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pk-aside-trust span {
  font-size: 12px;
  font-weight: 600;
  color: var(--pm-muted);
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: 20px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pk-aside-trust i {
  color: var(--pm-primary);
}

@media (max-width: 991px) {
  .pk-onboarding-aside {
    position: static;
    margin-top: 0.5rem;
  }

  .pk-form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.pk-channel-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 1.25rem;
  height: 100%;
  text-align: center;
  transition: var(--pm-transition);
}

.pk-channel-card:hover {
  border-color: var(--pm-primary);
  box-shadow: var(--pm-shadow);
}

.pk-channel-card .channel-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--pm-radius);
  background: rgba(109, 40, 217, 0.08);
  color: var(--pm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 0.75rem;
}

.pk-channel-card .channel-icon .bi {
  font-size: 1.5rem;
  line-height: 1;
  display: inline-block;
  color: inherit;
}

.pk-channel-card.text-start .channel-icon {
  margin-left: 0;
  margin-right: auto;
}

.pk-channel-card .channel-rate {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pm-primary);
}

.pk-channel-card .channel-rate.text-success {
  color: var(--pm-success) !important;
}

.pk-link {
  color: var(--pm-primary);
  font-weight: 500;
}

.pk-link:hover {
  color: #5B21B6;
}

.pk-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pk-checklist li i {
  color: var(--pm-success);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pk-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--pm-radius);
  background: rgba(109, 40, 217, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pm-primary);
}

/* ── BULK PAYOUT FLOW ── */
.pk-bulk-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.25rem;
  padding: 2rem 1rem;
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
}

.pk-bulk-flow__step {
  flex: 0 1 140px;
  text-align: center;
  padding: 1rem 0.75rem;
  background: var(--pm-light);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
}

.pk-bulk-flow__step .step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pm-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 1.1rem;
}

.pk-bulk-flow__step h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.pk-bulk-flow__step p {
  font-size: 0.75rem;
  color: var(--pm-muted);
  margin: 0;
}

.pk-bulk-flow__arrow {
  color: var(--pm-muted);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ── CHECKOUT MOCKUP (SPLIT) ── */
.checkout-mockup-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  overflow: hidden;
  box-shadow: var(--pm-shadow);
  max-width: 720px;
  margin: 0 auto;
}

.checkout-order-panel {
  background: var(--pm-light);
  padding: 1.5rem;
  border-right: 1px solid var(--pm-border);
}

.checkout-order-panel .order-merchant {
  font-size: 0.75rem;
  color: var(--pm-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.checkout-order-panel .order-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--pm-border);
}

.checkout-order-panel .order-total {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

.checkout-pay-panel {
  padding: 1.25rem 1.5rem 1.5rem;
}

.checkout-pay-panel .checkout-tabs {
  display: flex;
  border-bottom: 1px solid var(--pm-border);
  margin-bottom: 1rem;
}

.checkout-pay-panel .checkout-tab {
  padding: 0.5rem 0.85rem;
  font-size: 0.8125rem;
  color: var(--pm-muted);
  border-bottom: 2px solid transparent;
  cursor: default;
}

.checkout-pay-panel .checkout-tab.active {
  color: var(--pm-primary);
  border-bottom-color: var(--pm-primary);
  font-weight: 600;
}

.checkout-vpa-field {
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  color: var(--pm-muted);
  margin-bottom: 0.75rem;
}

.checkout-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  font-size: 0.6875rem;
  color: var(--pm-muted);
  margin-top: 1rem;
}

.checkout-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.checkout-trust-row i {
  color: var(--pm-success);
}

/* ── UPI SUCCESS COMPARE ── */
.pk-success-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.pk-success-card {
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  background: #fff;
}

.pk-success-card--highlight {
  border-color: var(--pm-primary);
  border-width: 2px;
  box-shadow: var(--pm-shadow);
}

.pk-success-card .rate-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0.5rem 0;
}

.pk-success-card--muted .rate-num {
  color: var(--pm-muted);
}

.pk-success-card--highlight .rate-num {
  color: var(--pm-primary);
}

/* ── COMPLIANCE DARK SECTION ── */
.pk-compliance-section {
  background: var(--pm-dark);
  color: #fff;
}

.pk-compliance-section .pk-section-heading {
  color: #fff;
}

.pk-compliance-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--pm-radius);
  background: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.75rem;
}

.pk-compliance-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* ── TEAM ROLE CARDS ── */
.pk-team-role {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 1.75rem;
  height: 100%;
  text-align: center;
}

.pk-team-role .role-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.08);
  color: var(--pm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 1rem;
}

/* ── PARTNER BADGES ── */
.pk-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pm-dark);
  transition: border-color var(--pm-transition), box-shadow var(--pm-transition);
}

.pk-partner-badge .bi {
  font-size: 1.05rem;
  color: var(--pm-primary);
  line-height: 1;
}

.pk-partner-badge:hover {
  border-color: rgba(109, 40, 217, 0.35);
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.08);
}

/* ── CONVERSION STAT CARDS ── */
.pk-stat-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 1.75rem;
  height: 100%;
  text-align: center;
}

.pk-stat-card .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--pm-primary);
  margin-bottom: 0.5rem;
}

/* ── UPI AUTOPAY ── */
.pk-autopay-use {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  margin-bottom: 0.5rem;
}

.pk-autopay-use i {
  color: var(--pm-primary);
  font-size: 1.25rem;
}

@media (max-width: 767px) {
  .checkout-mockup-split {
    grid-template-columns: 1fr;
  }

  .checkout-order-panel {
    border-right: none;
    border-bottom: 1px solid var(--pm-border);
  }

  .pk-bulk-flow__arrow {
    transform: rotate(90deg);
  }

  .pk-bulk-flow {
    flex-direction: column;
  }

  .pk-success-compare {
    grid-template-columns: 1fr;
  }
}
/* ══ PAYMESH DESIGN SYSTEM OVERRIDES ══ */

.pk-section-title,
.pk-section-heading {
  letter-spacing: -0.02em;
}

.pk-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Pill CTAs */
.btn-pk-primary,
.btn-pk-outline,
.btn-pk-white,
.btn-pk-outline-white,
.btn-pk-emerald,
.pk-pricing-spotlight-cta {
  border-radius: var(--pm-radius-pill);
}

.btn-pk-emerald {
  background: var(--pm-secondary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--pm-transition);
  display: inline-block;
}

.btn-pk-emerald:hover {
  background: #059669;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

/* Navbar — overlays dark hero (hero pulled up behind sticky bar) */
.pm-dark-hero-page .pm-nav-float {
  z-index: 1030;
}
.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark:not(.is-scrolled) {
  background: transparent !important;
  box-shadow: none;
}

.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark.navbar-dark,
.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark.navbar-light {
  --bs-navbar-bg: transparent;
  --bs-navbar-color: rgba(255, 255, 255, 0.85);
  --bs-navbar-hover-color: #fff;
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.4);
}

.pm-dark-hero-page .pm-nav-float.pm-nav-on-light.navbar-light {
  --bs-navbar-color: var(--pm-muted);
  --bs-navbar-hover-color: var(--pm-text);
  --bs-navbar-active-color: var(--pm-text);
  --bs-navbar-brand-color: var(--pm-text);
  --bs-navbar-brand-hover-color: var(--pm-text);
}

.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark .nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
}

.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark .nav-link:hover,
.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark .nav-link.active {
  color: #fff !important;
}

.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark .pk-logo,
.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark .navbar-brand {
  color: #fff !important;
}

.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark .pk-logo-text {
  color: #fff !important;
}

.pm-dark-hero-page .navbar .pk-logo-icon {
  color: var(--pm-secondary) !important;
}

.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark .navbar-toggler-icon {
  filter: invert(1);
}

.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark.is-scrolled {
  box-shadow: 0 4px 24px rgba(15, 10, 30, 0.4);
}

.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark.is-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
}

.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark.is-scrolled .nav-link:hover,
.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark.is-scrolled .nav-link.active {
  color: #fff !important;
}

.pm-dark-hero-page .pm-nav-float.pm-nav-on-dark.is-scrolled .pk-logo-text {
  color: #fff !important;
}

.pk-logo {
  gap: 0.5rem;
}

.pk-logo-icon {
  font-size: 1.5rem;
  color: var(--pm-secondary);
  line-height: 1;
}

.pk-logo-text {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

/* Hero — dark mesh background */
.pk-hero {
  background: var(--pm-dark);
  padding: calc(var(--pm-section-padding-y) + 2rem) 0 var(--pm-section-padding-y);
  min-height: 92vh;
}

/* Pull hero behind sticky navbar so transparent header shows dark mesh, not white body */
.pm-dark-hero-page .pk-hero {
  margin-top: calc(-1 * (0.75rem * 2 + 52px));
  padding-top: calc(var(--pm-section-padding-y) + 2rem + 0.75rem * 2 + 52px);
}

.pk-hero .pk-hero-title {
  color: #fff;
}

.pk-hero .pk-hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.pk-hero-pattern {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='1.2' fill='%236D28D9' fill-opacity='0.15'/%3E%3Cpath d='M30 30 L60 15 M30 30 L45 60 M30 30 L0 45 M30 30 L15 0' stroke='%236D28D9' stroke-opacity='0.08' stroke-width='0.5'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(109, 40, 217, 0.25) 0%, transparent 55%);
  background-size: 60px 60px, 100% 100%;
}

.pk-trust-micro {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.pk-trust-micro i {
  color: var(--pm-secondary);
}

/* Mesh network visualization */
.pm-mesh-viz {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.pm-mesh-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm-primary), var(--pm-gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 0 40px rgba(109, 40, 217, 0.5);
  z-index: 2;
  animation: pm-pulse 3s ease-in-out infinite;
}

.pm-mesh-node {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(109, 40, 217, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  z-index: 2;
  animation: pm-pulse 3s ease-in-out infinite;
}

.pm-mesh-node i {
  font-size: 1rem;
  color: var(--pm-secondary);
  margin-bottom: 2px;
}

.pm-mesh-node:nth-child(2) { top: 4%; left: 50%; transform: translateX(-50%); animation-delay: 0.3s; }
.pm-mesh-node:nth-child(3) { top: 22%; right: 4%; animation-delay: 0.6s; }
.pm-mesh-node:nth-child(4) { bottom: 22%; right: 4%; animation-delay: 0.9s; }
.pm-mesh-node:nth-child(5) { bottom: 4%; left: 50%; transform: translateX(-50%); animation-delay: 1.2s; }
.pm-mesh-node:nth-child(6) { bottom: 22%; left: 4%; animation-delay: 1.5s; }
.pm-mesh-node:nth-child(7) { top: 22%; left: 4%; animation-delay: 1.8s; }

.pm-mesh-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pm-mesh-lines::before,
.pm-mesh-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.5), transparent);
  transform-origin: left center;
}

.pm-mesh-lines::before { transform: rotate(0deg) translateX(36px); }
.pm-mesh-lines::after { transform: rotate(60deg) translateX(36px); }

.pm-mesh-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(109, 40, 217, 0.25);
  border-radius: 50%;
  z-index: 0;
}

@keyframes pm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109, 40, 217, 0.35); }
  50% { box-shadow: 0 0 0 12px rgba(109, 40, 217, 0); }
}

/* Trust bar */
.pk-trust-bar {
  background: var(--pm-dark-nav);
  border-top: none;
  border-bottom: none;
}

.pk-trust-bar .pk-trust-item {
  color: #fff;
}

.pk-trust-bar .pk-trust-item i {
  color: var(--pm-secondary);
}

/* Payment methods section */
.pk-payment-methods {
  background: var(--pm-light) !important;
}

.pk-payment-methods .card {
  border-radius: var(--pm-radius-lg) !important;
  border: 1px solid var(--pm-border) !important;
  transition: var(--pm-transition);
}

.pk-payment-methods .card:hover {
  box-shadow: var(--pm-shadow-hover);
  border-color: rgba(109, 40, 217, 0.35) !important;
  transform: translateY(-4px);
}

.pk-payment-methods .icon-box {
  width: 52px;
  height: 52px;
  background: rgba(109, 40, 217, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pm-primary);
  font-size: 1.35rem;
}

/* Feature cards — gradient top border */
.feature-card {
  border-radius: var(--pm-radius-lg);
  border-top: 2px solid transparent;
  border-left: 1px solid var(--pm-border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pm-primary), var(--pm-secondary));
  opacity: 0;
  transition: opacity var(--pm-transition);
}

.feature-card:hover {
  border-left: 1px solid var(--pm-border);
  transform: translateY(-6px);
  box-shadow: var(--pm-shadow-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card .icon-box {
  background: rgba(109, 40, 217, 0.1);
  border-radius: 14px;
  color: var(--pm-primary);
}

/* How it works */
.pk-step-circle {
  background: var(--pm-primary) !important;
}

.pk-how-it-works .step-connector,
.step-connector {
  background: linear-gradient(90deg, var(--pm-primary), var(--pm-secondary)) !important;
  height: 3px;
}

/* Stats bar */
.stats-bar {
  background: linear-gradient(135deg, var(--pm-primary) 0%, var(--pm-gradient-end) 100%);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}

.stats-bar .container {
  position: relative;
  z-index: 1;
}

/* CTA banner */
.pk-cta-banner .card,
.pk-cta-mesh {
  background: linear-gradient(135deg, var(--pm-primary) 0%, var(--pm-gradient-end) 100%) !important;
  border-radius: var(--pm-radius-lg) !important;
  position: relative;
  overflow: hidden;
}

.pk-cta-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='white' fill-opacity='0.12'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  animation: pm-mesh-drift 20s linear infinite;
  pointer-events: none;
}

@keyframes pm-mesh-drift {
  from { background-position: 0 0; }
  to { background-position: 40px 40px; }
}

/* Testimonials */
.testimonial-quote::before {
  color: #DDD6FE;
}

.testimonial-card {
  border-color: var(--pm-border);
  border-radius: var(--pm-radius-lg);
}

.testimonial-card:hover {
  box-shadow: var(--pm-shadow-hover);
}

/* Pricing */
.pricing-big-number,
.pk-pricing-spotlight-accent {
  color: var(--pm-primary) !important;
}

.pricing-quick-card {
  background: #F5F3FF !important;
  border-color: var(--pm-border) !important;
}

.pricing-card.featured,
.volume-card.popular {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--pm-primary), var(--pm-secondary)) border-box;
}

/* Checkout mockup */
.checkout-header {
  background: #F5F3FF !important;
}

.checkout-tab.active {
  color: var(--pm-primary) !important;
  border-bottom-color: var(--pm-primary) !important;
}

.checkout-pay-btn {
  background: var(--pm-primary) !important;
  border-radius: var(--pm-radius-pill);
}

/* Dashboard preview */
.dash-preview {
  background: var(--pm-dark) !important;
}

.dash-preview th {
  color: #A78BFA !important;
}

.status-success {
  background: #064E3B !important;
  color: #6EE7B7 !important;
}

/* Footer */
.pk-footer {
  background: var(--pm-dark);
  position: relative;
  overflow: hidden;
}

.pk-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%2310B981' fill-opacity='0.08'/%3E%3Cpath d='M40 40 L80 20 M40 40 L60 80 M40 40 L0 60 M40 40 L20 0' stroke='%236D28D9' stroke-opacity='0.06'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.6;
  pointer-events: none;
}

.pk-footer > .container {
  position: relative;
  z-index: 1;
}

.pk-footer-logo .pk-logo-icon {
  color: var(--pm-secondary);
}

.pk-footer-logo .pk-logo-text {
  color: #fff;
}

.pk-footer-links a:hover {
  color: var(--pm-secondary) !important;
}

.pk-footer-bottom {
  background: rgba(26, 15, 60, 0.5);
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.pk-social-links a:hover {
  background: var(--pm-secondary);
}

/* Inner page heroes */
.pk-page-hero {
  background: linear-gradient(135deg, var(--pm-dark-nav) 0%, #2D1B69 100%) !important;
  border-bottom: none !important;
  color: #fff;
}

.pk-page-hero h1,
.pk-page-hero .display-6 {
  color: #fff;
}

.pk-page-hero .lead,
.pk-page-hero .text-muted {
  color: rgba(255, 255, 255, 0.78) !important;
}

.pk-page-hero .breadcrumb-item a {
  color: var(--pm-secondary) !important;
}

.pk-page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}

.pk-page-hero .btn-pk-outline {
  border-color: #fff;
  color: #fff;
}

.pk-page-hero .btn-pk-outline:hover {
  background: #fff;
  color: var(--pm-primary);
}

/* About mission copy tweak handled in blade */
.pm-badge-card {
  background: rgba(109, 40, 217, 0.1) !important;
  color: var(--pm-primary) !important;
}

/* Default navbar on inner pages */
body:not(.pm-dark-hero-page) .navbar {
  background: #fff !important;
  box-shadow: 0 1px 0 var(--pm-border);
}

body:not(.pm-dark-hero-page) .navbar .nav-link {
  color: var(--pm-text);
}

body:not(.pm-dark-hero-page) .navbar .nav-link:hover,
body:not(.pm-dark-hero-page) .navbar .nav-link.active {
  color: var(--pm-primary);
}

body:not(.pm-dark-hero-page) .navbar .pk-logo-text {
  color: var(--pm-dark);
}

body:not(.pm-dark-hero-page) .navbar.scrolled {
  background: var(--pm-dark-nav) !important;
}

body:not(.pm-dark-hero-page) .navbar.scrolled .nav-link,
body:not(.pm-dark-hero-page) .navbar.scrolled .pk-logo-text {
  color: #fff;
}

body:not(.pm-dark-hero-page) .navbar.scrolled .nav-link:hover {
  color: #fff;
}
