/* ==========================================================================
   Modern SaaS Pricing Page Styles (BookWellNow Theme)
   ========================================================================== */

.pricing-page-wrapper {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary, #0f172a);
  background-color: #ffffff;
  overflow-x: hidden;
  padding-top: 80px; /* Header space offset */
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================================================
   1. Hero Section & Trust Bar
   ========================================================================== */

.pricing-hero {
  position: relative;
  text-align: center;
  padding: 100px 0 60px;
  background-color: #F8F6FF; /* soft brand-violet tint */
}

/* Floating background glow spheres */
.pricing-hero .hero-glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.pricing-hero .sphere-1 {
  width: 300px;
  height: 300px;
  background: rgba(87, 0, 180, 0.05);
  top: -50px;
  left: 15%;
}

.pricing-hero .sphere-2 {
  width: 350px;
  height: 350px;
  background: rgba(122, 51, 212, 0.04);
  bottom: -50px;
  right: 15%;
}

.pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(87, 0, 180, 0.06);
  color: var(--primary, #5700B4);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pricing-heading-lg {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary, #0f172a);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}

.pricing-heading-lg .gradient-text {
  background: linear-gradient(135deg, var(--primary, #5700B4), var(--accent, #7A33D4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-subheading {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary, #64748b);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Trust Bar below Heading */
.pricing-trust-bar {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  background: rgba(87, 0, 180, 0.02);
  border: 1px solid rgba(87, 0, 180, 0.06);
  padding: 10px 28px;
  border-radius: 99px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(87, 0, 180, 0.01);
  margin-bottom: 32px;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
}

.trust-rating-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #f59e0b; /* Golden stars */
}

.trust-star-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.trust-check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.trust-bar-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(87, 0, 180, 0.12);
  display: inline-block;
  align-self: center;
}

/* ==========================================================================
   2. Pricing Plan Cards Section
   ========================================================================== */

.pricing-cards-section {
  padding: 60px 0 100px;
  background-color: #F8F6FF; /* soft brand-violet tint */
}

/* Unified Pricing Table Container */
.pricing-table-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
}

.pricing-grid-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: none;
  margin: 0;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 48px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
}

/* Plan Specific Top Borders */
.free-plan-card {
  border-top: 5px solid #10B981; /* Green */
  border-right: 1px solid #e2e8f0;
}

.pro-plan-card {
  border-top: 5px solid #5700B4; /* Purple */
}

/* Header Elements styling */
.pricing-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 250px;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 28px;
}

.pricing-card .plan-badge-green {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  background: #10B981;
  padding: 4px 12px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.pricing-card .plan-badge-purple {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  background: #5700B4;
  padding: 4px 12px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.pricing-card .plan-name {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.pricing-card .plan-description {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.5;
}

.plan-price-display-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 12px 0 20px;
}

.plan-price-display {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.price-symbol {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 4px;
}

.price-amount {
  font-size: 3.8rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -2px;
}

.price-cents {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 4px;
}

.price-period {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  align-self: flex-end;
  margin-bottom: 10px;
  margin-left: 4px;
}

.original-price-strikethrough {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: #ef4444;
  font-weight: 700;
  margin-bottom: 2px;
}

.plan-savings-badge {
  background: #fef08a; /* Soft Yellow */
  color: #854d0e; /* Dark Golden/Yellow */
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Row-by-Row Features Table */
.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.plan-features-header {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  padding: 24px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: #475569;
}

.plan-feature-item:last-child {
  border-bottom: none;
}

.plan-feature-item.highlight-feature {
  color: #0f172a;
}

.feature-check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.feature-check-icon.icon-green {
  color: #10B981;
}

.feature-check-icon.icon-purple {
  color: #5700B4;
}

/* Footer CTA Block */
.pricing-card-footer {
  padding-top: 32px;
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.btn-pricing-cta {
  width: 100%;
  max-width: 280px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-decoration: none;
}

.btn-pricing-cta.btn-free-cta {
  background: transparent;
  color: #10B981;
  border: 2px solid #10B981;
}

.btn-pricing-cta.btn-free-cta:hover {
  background: #10B981;
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.btn-pricing-cta.btn-pro-cta {
  background: linear-gradient(135deg, #5700B4 0%, #7C3AED 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(87, 0, 180, 0.25);
}

.btn-pricing-cta.btn-pro-cta:hover {
  box-shadow: 0 6px 20px rgba(87, 0, 180, 0.4);
  transform: translateY(-2px) scale(1.03);
}

/* Money-Back Guarantee Box Styling */
.table-guarantee-box {
  background: #ffffff;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  align-items: start;
  border-bottom: 1px solid #e2e8f0;
}

.guarantee-box-seal-wrap {
  display: flex;
  justify-content: center;
}

.table-guarantee-seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(87, 0, 180, 0.05);
  border: 2px dashed rgba(87, 0, 180, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: tableSealSpin 60s linear infinite;
}

@keyframes tableSealSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.table-seal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5700B4 0%, #7A33D4 100%);
  border: none;
  box-shadow: 0 10px 22px rgba(87, 0, 180, 0.22);
  animation: tableSealUnspin 60s linear infinite;
}

@keyframes tableSealUnspin {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.table-seal-number {
  font-size: 2.1rem;
  font-weight: 850;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.table-seal-label {
  font-size: 0.62rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1.5px;
}

.guarantee-box-content h4 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 8px;
}

.guarantee-box-content p {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.guarantee-box-signature-block {
  display: flex;
  align-items: center;
  gap: 24px;
}

.guarantee-signature-svg {
  width: 130px;
  height: 40px;
  opacity: 0.85;
}

.guarantee-signer-info {
  display: flex;
  flex-direction: column;
}

.signer-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}

.signer-title {
  font-size: 0.75rem;
  color: #64748b;
}

/* Footer Meta Row */
.table-footer-meta {
  background: #f8fafc;
  padding: 20px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.table-footer-disclaimer {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  max-width: 800px;
}

.table-footer-payment-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.payment-icons-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-icons-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-icon {
  width: 32px;
  height: 20px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   3. Why Switch Section
   ========================================================================== */

.why-switch-section {
  padding: 100px 0;
  background-color: #ffffff; /* pure white */
  border-top: 1px solid rgba(87, 0, 180, 0.06);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-section-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary, #5700B4);
  background: rgba(87, 0, 180, 0.06);
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 16px;
}

.switch-title {
  font-size: clamp(1.8rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.switch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.switch-card {
  background: #ffffff;
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
}

.switch-card.other-plugins-card {
  background: #f8fafc;
  border-color: rgba(239, 68, 68, 0.08);
}

.switch-card.bookwellnow-switch-card {
  border: 2px solid var(--primary, #5700B4);
  background: linear-gradient(180deg, #ffffff 0%, #fcf9ff 100%);
  box-shadow: 0 15px 35px rgba(87, 0, 180, 0.04);
}

.switch-card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary, #5700B4);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(87, 0, 180, 0.2);
}

.switch-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.switch-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.switch-features-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #334155;
}

.switch-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.switch-icon.cross {
  color: #ef4444;
}

.switch-icon.check {
  color: #10b981;
}

/* ==========================================================================
   4. Features Matrix / Comparison Section
   ========================================================================== */

.comparison-section {
  padding: 100px 0;
  background-color: #F8FAFC; /* soft slate-gray */
  border-top: 1px solid rgba(87, 0, 180, 0.06);
}

.comparison-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.comparison-subtitle-note {
  text-align: center;
  color: var(--text-secondary, #64748b);
  margin-bottom: 48px;
  font-size: 1rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--border-light, #e2e8f0);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.02);
  max-width: 960px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
  background-color: #ffffff; /* pure white inside table */
}

.comparison-table th, 
.comparison-table td {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
  font-size: 1rem;
}

.comparison-table th:not(:last-child),
.comparison-table td:not(:last-child) {
  border-right: 1px solid rgba(87, 0, 180, 0.06);
}

.comparison-table thead th {
  background: #ffffff; /* clean white background */
  font-weight: 800;
  color: var(--text-primary, #0f172a);
  vertical-align: bottom !important;
  padding: 32px 20px !important;
}

.comparison-table thead th:first-child {
  width: 50%;
  font-size: 1.15rem;
  color: #0f172a;
  text-align: left;
  padding-bottom: 36px !important;
}

.comparison-table thead th:not(:first-child) {
  width: 25%;
}

/* Redesigned comparison header inner elements */
.th-plan-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.th-plan-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary, #64748b);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.th-price-box {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--text-primary, #0f172a);
}

.th-currency {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 4px;
  margin-right: 2px;
}

.th-price-num {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.th-price-right-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 2px;
  margin-top: 4px;
  line-height: 1.1;
}

.th-price-cents {
  font-size: 0.95rem;
  font-weight: 700;
}

.th-price-period {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary, #64748b);
  white-space: nowrap;
}

/* Header CTA Button */
.btn-th-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5700B4, #7C3AED);
  color: #ffffff !important;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(87, 0, 180, 0.2);
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 150px;
}

.btn-th-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 16px rgba(87, 0, 180, 0.3);
}

.btn-free-th-cta {
  background: #10b981; /* Green for Free plan */
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-free-th-cta:hover {
  background: #059669;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: rgba(87, 0, 180, 0.01);
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table tr.highlighted-row td {
  background: rgba(87, 0, 180, 0.03) !important;
}

.table-check-cell {
  text-align: center;
}

.table-check-icon {
  width: 20px;
  height: 20px;
  color: #7c3aed;
  margin: 0 auto;
  display: block;
}

.comparison-table .dash-icon {
  color: #cbd5e1;
  font-size: 1.1rem;
  font-weight: bold;
}

/* ==========================================================================
   5. Accept Payments Online Section
   ========================================================================== */

.payments-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #180032 0%, #0E001F 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.payments-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(122, 51, 212, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.payments-content-wrapper {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.payments-text-block {
  text-align: left;
}

.payments-section .pricing-section-badge {
  background: rgba(167, 139, 250, 0.1);
  color: #a78bfa;
}

.payments-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.payments-desc {
  font-size: 1.1rem;
  color: #94A3B8;
  margin-bottom: 28px;
  line-height: 1.6;
}

.payments-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payments-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #cbd5e1;
}

.payment-bullet-icon {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
}

.payments-logos-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.logo-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transition: all 0.3s ease;
  height: 84px;
}

.logo-item:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 0, 180, 0.18);
  box-shadow: 0 8px 24px rgba(87, 0, 180, 0.08);
}

.logo-item svg {
  height: 30px;
  max-width: 100%;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.logo-item-spanned {
  grid-column: span 2;
  width: 100%;
  height: auto !important;
  min-height: 84px;
  padding: 16px 24px;
}

.woo-spanned-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.woo-spanned-logo {
  height: 28px !important;
  width: auto;
}

.woo-spanned-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary, #64748b);
  border-left: 1px solid #cbd5e1;
  padding-left: 16px;
  display: inline-block;
}

/* ==========================================================================
   6. Money Back / Guarantee Banner
   ========================================================================== */

.guarantee-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #5700B4, #7A33D4);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.guarantee-banner::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.guarantee-seal-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.guarantee-seal-wrapper {
  position: relative;
}

.pricing-page-wrapper .guarantee-seal {
  width: 130px !important;
  height: 130px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  z-index: 1 !important;
  animation: none !important;
  transform: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.pricing-page-wrapper .seal-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  z-index: 2 !important;
}

.pricing-page-wrapper .seal-number {
  font-size: 2.25rem !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1 !important;
}

.pricing-page-wrapper .seal-label {
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  letter-spacing: 0.08em !important;
  margin-top: 2px !important;
}

.pricing-page-wrapper .seal-ring.ring-1 {
  position: absolute !important;
  top: -6px !important;
  left: -6px !important;
  right: -6px !important;
  bottom: -6px !important;
  width: auto !important;
  height: auto !important;
  border: 1.5px dashed rgba(255, 255, 255, 0.25) !important;
  border-radius: 50% !important;
  animation: spin-clockwise 25s linear infinite !important;
}

@keyframes spin-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.guarantee-badge {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 16px;
}

.guarantee-content h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.guarantee-desc {
  font-size: 1.1rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 28px !important;
  line-height: 1.6;
}

.guarantee-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.guarantee-benefit-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.guarantee-benefit-box .guarantee-check {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
}

/* ==========================================================================
   7. FAQ Section
   ========================================================================== */

.faq-section {
  padding: 100px 0;
  background-color: #ffffff; /* pure white */
  border-top: 1px solid rgba(87, 0, 180, 0.06);
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.faq-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.faq-header p {
  color: var(--text-secondary, #64748b);
  font-size: 1.05rem;
}

.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(87, 0, 180, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(87, 0, 180, 0.18);
  box-shadow: 0 10px 25px rgba(87, 0, 180, 0.03);
}

.faq-item.active {
  border-color: var(--primary, #5700B4);
  box-shadow: 0 10px 30px rgba(87, 0, 180, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary, #0f172a);
  cursor: pointer;
  outline: none;
}

.faq-arrow-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-secondary, #64748b);
  margin-left: 15px;
}

.faq-item.active .faq-arrow-icon {
  transform: rotate(180deg);
  color: var(--primary, #5700B4);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-secondary, #64748b);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   8. Responsive Layout adjustments
   ========================================================================== */

@media (max-width: 1024px) {
  .pricing-grid-two-col {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
  }

  .free-plan-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .pricing-card {
    padding: 36px 24px;
  }

  .pricing-card-header {
    min-height: auto;
  }

  .table-guarantee-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
    gap: 20px;
  }

  .guarantee-box-signature-block {
    flex-direction: column;
    gap: 12px;
  }

  .table-footer-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }

  .table-footer-payment-icons {
    align-items: center;
  }

  .switch-card {
    padding: 36px;
  }

  .payments-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 500px;
    text-align: center;
  }

  .payments-text-block {
    text-align: center;
  }

  .payments-features-list {
    align-items: center;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  .guarantee-seal-column {
    margin: 0 auto;
  }

  .guarantee-benefits-grid {
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .pricing-container {
    padding: 0 1.25rem;
  }
  
  .pricing-hero {
    padding: 60px 0 30px;
  }

  .pricing-trust-bar {
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    padding: 16px 20px;
  }

  .trust-bar-divider {
    display: none;
  }

  .logo-grid {
    grid-template-columns: 1fr;
  }

  .logo-item-spanned {
    grid-column: span 1;
    max-width: none;
  }

  .woo-spanned-text {
    border-left: none;
    padding-left: 0;
    text-align: center;
    margin-top: 4px;
  }

  .guarantee-benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
