/* =========================================================
   QRKavach — Full Pricing Page  (layout="full")
   Used by [qrkavach_pricing layout="full"]
   ========================================================= */

/* ── Reset / base ───────────────────────────────────────── */
.qkp-page { font-family: 'Inter', sans-serif; color: #0F0F1A; }
.qkp-page *, .qkp-page *::before, .qkp-page *::after { box-sizing: border-box; }
.qkp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Hero + cards share one lavender band ───────────────── */
.qkp-hero-band {
  background: linear-gradient(175deg, #ECEFFE 0%, #F2EFFF 55%, #ECEFFE 100%);
  padding-top: 48px;
  padding-bottom: 72px;
}

/* ── Hero ───────────────────────────────────────────────── */
.qkp-hero {
  text-align: center;
  padding: calc(72px + 4rem) 24px 52px;
}
.qkp-hero__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #3730A3;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 100px;
  padding: 5px 18px;
  margin-bottom: 26px;
}
.qkp-hero__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4.8vw, 54px);
  font-weight: 800;
  line-height: 1.13;
  color: #0D0D1A;
  margin: 0 0 20px;
}
.qkp-hero__title-accent {
  display: block;
  color: #3730A3;
}
.qkp-hero__sub {
  font-size: 15.5px;
  color: #5A5A72;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.68;
}

/* ── Plan cards grid ────────────────────────────────────── */
.qkp-cards-section { background: transparent; padding-bottom: 0; }
.qkp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 1024px) { .qkp-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .qkp-cards-grid { grid-template-columns: 1fr; } }

/* ── Single card ────────────────────────────────────────── */
.qkp-card {
  background: #fff;
  border: 2px solid rgba(0,0,0,.10);
  border-radius: 1rem;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 16px rgba(60,60,120,.07);
  transition: box-shadow .2s ease, transform .2s ease;
}
.qkp-card:hover {
  box-shadow: 0 8px 32px rgba(55,48,163,.12);
  transform: translateY(-3px);
}
.qkp-card--featured {
  border: 2px solid #2563eb;
  box-shadow: 0 8px 40px rgba(55,48,163,.18);
}
.qkp-card--featured:hover { transform: translateY(-5px); }

/* Best Value badge */
.qkp-card__best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Icon pod */
.qkp-card__icon-pod {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.qkp-card__icon-pod svg { width: 26px; height: 26px; }

/* Default (non-featured) icon pod: light lavender fill */
.qkp-card:not(.qkp-card--featured) .qkp-card__icon-pod {
  background: rgba(99, 102, 241, 0.10) !important;
  color: #4338CA !important;
}
/* Featured icon pod: solid indigo */
.qkp-card--featured .qkp-card__icon-pod {
  background: #3730A3 !important;
  color: #fff !important;
}

/* Plan name & description */
.qkp-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #030213;
  margin: 0 0 6px;
}
.qkp-card__desc {
  font-size: 13.5px;
  color: #717182;
  line-height: 1.55;
  margin: 0 0 22px;
}

/* Price block */
.qkp-card__price {
  margin-bottom: 24px;
}
.qkp-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.qkp-card__price-amount {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #030213;
  line-height: 1;
}
.qkp-card__price-period {
  font-size: 0.9rem;
  color: #717182;
  font-weight: 500;
}
.qkp-card__price-original {
  font-size: 14px;
  color: #9CA3AF;
  text-decoration: line-through;
  margin-top: 4px;
}
.qkp-card__price-promo-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #D1FAE5;
  border-radius: 6px;
  padding: 2px 8px;
  margin-top: 6px;
}
.qkp-card__price--free .qkp-card__price-amount {
  font-size: 2.25rem;
  color: #030213;
}

/* CTA button — uses theme's qk-plan-btn / qk-plan-btn--paid / qk-plan-btn--free */
.qk-plan-card__cta { margin-bottom: 24px; }

/* Override .qk-page-content a which applies color + underline to all links */
.qkp-page .qk-plan-btn {
  text-decoration: none !important;
}
.qkp-page .qk-plan-btn--paid {
  color: #fff !important;
}
.qkp-page .qk-plan-btn--paid:hover {
  color: #fff !important;
  text-decoration: none !important;
}

/* Feature bullets */
.qkp-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qkp-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #717182;
  line-height: 1.45;
}
.qkp-card__feature svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Comparison table section ───────────────────────────── */
.qkp-compare-section {
  background: #F3F3F6;
  padding: 72px 24px 80px;
}
.qkp-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  text-align: center;
  color: #0F0F1A;
  margin: 0 0 8px;
}
.qkp-section-sub {
  text-align: center;
  color: #6B6B80;
  font-size: 16px;
  margin: 0 0 40px;
}
.qkp-compare-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.qkp-compare-table {
  width: 100%;
  border-collapse: collapse;
}
.qkp-compare-table thead th {
  padding: 18px 20px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0F0F1A;
  background: #F9FAFB;
  border-bottom: 1px solid #E4E4EF;
}
.qkp-compare-table thead th:first-child { text-align: left; width: 30%; }
.qkp-compare-table thead th.qkp-th--featured { background: #EEF3FF; color: #004AC6; }
.qkp-compare-table tbody tr:nth-child(even) { background: #FAFAFA; }
.qkp-compare-table tbody tr:hover { background: #F5F8FF; }
.qkp-compare-table tbody td {
  padding: 14px 20px;
  font-size: 13.5px;
  color: #374151;
  text-align: center;
  border-bottom: 1px solid #F0F0F5;
}
.qkp-compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #0F0F1A;
}
.qkp-compare-table tbody td.qkp-td--featured {
  background: rgba(0,74,198,.03);
}
.qkp-compare-table .qkp-compare-group th {
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9CA3AF;
  background: #F9FAFB;
  text-align: left;
  border-bottom: 1px solid #E4E4EF;
}
.qkp-check { display: inline-flex; }
.qkp-check svg { width: 18px; height: 18px; }
.qkp-cross { display: inline-flex; }
.qkp-cross svg { width: 18px; height: 18px; }
.qkp-val { font-weight: 600; color: #0F0F1A; font-size: 13px; }

/* Table scroll on small screens */
@media (max-width: 700px) {
  .qkp-compare-card { overflow-x: auto; }
  .qkp-compare-table { min-width: 600px; }
}

/* ── FAQ section ────────────────────────────────────────── */
.qkp-faq-section {
  background: #fff;
  padding: 72px 24px 80px;
}
.qkp-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qkp-faq-item {
  border: 1.5px solid #E4E4EF;
  border-radius: 14px;
  overflow: hidden;
}
.qkp-faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #0F0F1A;
  font-family: 'Inter', sans-serif;
}
.qkp-faq-item__trigger:hover { background: #F9FAFB; }
.qkp-faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #EEF3FF;
  color: #004AC6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease;
  font-size: 18px;
  line-height: 1;
}
.qkp-faq-item--open .qkp-faq-item__icon { transform: rotate(45deg); }
.qkp-faq-item__body {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.qkp-faq-item--open .qkp-faq-item__body { display: block; }

/* ── CTA banner ─────────────────────────────────────────── */
.qkp-cta-section {
  background: linear-gradient(135deg, #0A1F5C 0%, #1A3A8A 50%, #2D5BE3 100%);
  padding: 72px 24px;
  text-align: center;
}
.qkp-cta-section .qkp-section-title { color: #fff; margin-bottom: 12px; }
.qkp-cta-section .qkp-section-sub { color: rgba(255,255,255,.75); margin-bottom: 36px; }
.qkp-cta-btn {
  display: inline-block;
  background: #fff;
  color: #004AC6;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: all .2s ease;
}
.qkp-cta-btn:hover { background: #EEF3FF; transform: translateY(-2px); }
