/**
 * GLOBAL MLM SOFTWARE — PRICING PAGE STYLES
 * pricing.css  |  v1.0
 * Theme: Emerald-Green / Teal / Gold / Dark-Slate  |  Namespace: .pr-*
 *
 * Sections:
 *  1. CSS Variables & Reset
 *  2. Announcement Bar (shared gms-)
 *  3. Page Layout Utilities
 *  4. Breadcrumb
 *  5. Hero Section
 *  6. Stats Ribbon
 *  7. Billing Toggle (Monthly / Annual)
 *  8. Pricing Cards Grid
 *  9. Feature Comparison Table
 * 10. Add-On Modules
 * 11. Special Offers & Discounts
 * 12. How Pricing Works (Process)
 * 13. Trust / Guarantee Section
 * 14. Testimonials
 * 15. FAQ Accordion
 * 16. Demo / Contact Form
 * 17. CTA Band
 * 18. Footer
 * 19. Responsive
 * 20. Animations & Utilities
 */

/* ══════════════════════════════════════════════════════════
   1. CSS VARIABLES & RESET
══════════════════════════════════════════════════════════ */
:root {
  /* Brand Palette — Emerald/Teal/Gold */
  --pr-primary:        #10b981;   /* Emerald-500 */
  --pr-primary-dark:   #059669;   /* Emerald-600 */
  --pr-primary-light:  #6ee7b7;   /* Emerald-300 */
  --pr-teal:           #14b8a6;   /* Teal-500 */
  --pr-teal-dark:      #0d9488;   /* Teal-600 */
  --pr-gold:           #f59e0b;   /* Amber-500 */
  --pr-gold-light:     #fcd34d;   /* Amber-300 */
  --pr-gold-dark:      #d97706;   /* Amber-600 */
  --pr-danger:         #ef4444;   /* Red-500 */
  --pr-blue:           #3b82f6;   /* Blue-500 */
  --pr-purple:         #8b5cf6;   /* Violet-500 */

  /* Backgrounds */
  --pr-hero-bg:        linear-gradient(135deg, #061a0f 0%, #0a2218 35%, #0d2b20 65%, #050f09 100%);
  --pr-dark-bg:        #080f0c;
  --pr-card-bg:        #0e1a14;
  --pr-card-border:    rgba(16, 185, 129, 0.15);
  --pr-surface:        #0b1510;
  --pr-surface-alt:    #101d16;
  --pr-popular-bg:     linear-gradient(160deg, #064e35 0%, #065f46 50%, #047857 100%);

  /* Text */
  --pr-text:           #f0fdf4;
  --pr-text-muted:     #94a3b8;
  --pr-text-subtle:    #64748b;

  /* UI */
  --pr-radius:         14px;
  --pr-radius-lg:      20px;
  --pr-shadow:         0 4px 24px rgba(16, 185, 129, 0.12);
  --pr-shadow-hover:   0 16px 48px rgba(16, 185, 129, 0.26);
  --pr-transition:     0.3s ease;
  --pr-font:           'Plus Jakarta Sans', 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--pr-font);
  background: var(--pr-dark-bg);
  color: var(--pr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ══════════════════════════════════════════════════════════
   2. ANNOUNCEMENT BAR (shared gms-)
══════════════════════════════════════════════════════════ */
.gms-ann-bar {
  background: linear-gradient(90deg, var(--pr-primary-dark), var(--pr-teal-dark));
  color: #fff;
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; font-size: 0.875rem; font-weight: 500;
  position: relative; z-index: 1001;
}
.gms-ann-bar p { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.gms-ann-bar .fa-bolt { color: var(--pr-gold); }
.gms-ann-link { color: #fff; font-weight: 700; border-bottom: 1px dashed rgba(255,255,255,0.6); transition: border-color var(--pr-transition); }
.gms-ann-link:hover { border-color: #fff; }
.gms-ann-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.7); font-size: 1rem; padding: 4px 8px;
  transition: color var(--pr-transition);
}
.gms-ann-close:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════
   3. PAGE LAYOUT UTILITIES
══════════════════════════════════════════════════════════ */
.pr-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pr-section { padding: 80px 0; }
.pr-section-dark { background: var(--pr-surface); }
.pr-section-alt  { background: var(--pr-surface-alt); }

.pr-section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--pr-text);
  line-height: 1.22;
  margin-bottom: 12px;
}
.pr-section-title span {
  background: linear-gradient(90deg, var(--pr-primary-light), var(--pr-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pr-section-sub {
  color: var(--pr-text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 40px;
}
.pr-section-head { text-align: center; margin-bottom: 48px; }

/* Buttons */
.pr-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--pr-primary), var(--pr-teal));
  color: #fff; font-weight: 700; font-size: 0.97rem;
  padding: 14px 28px; border-radius: 50px;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
  box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}
.pr-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(16,185,129,0.5); }

.pr-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--pr-primary);
  color: var(--pr-primary-light); font-weight: 700; font-size: 0.97rem;
  padding: 12px 26px; border-radius: 50px;
  transition: background var(--pr-transition), color var(--pr-transition);
}
.pr-btn-outline:hover { background: var(--pr-primary); color: #fff; }

.pr-btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--pr-gold), var(--pr-gold-dark));
  color: #0a0a0a; font-weight: 800; font-size: 0.97rem;
  padding: 14px 28px; border-radius: 50px;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.pr-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,158,11,0.6); }

/* Grad text helper */
.pr-grad {
  background: linear-gradient(90deg, var(--pr-primary-light), var(--pr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════
   4. BREADCRUMB
══════════════════════════════════════════════════════════ */
.pr-breadcrumb {
  background: var(--pr-surface);
  padding: 12px 0;
  border-bottom: 1px solid rgba(16,185,129,0.1);
}
.pr-breadcrumb-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; color: var(--pr-text-muted);
}
.pr-breadcrumb-inner a {
  color: var(--pr-primary-light);
  transition: color var(--pr-transition);
}
.pr-breadcrumb-inner a:hover { color: var(--pr-primary); }
.pr-breadcrumb-sep { color: var(--pr-text-subtle); font-size: 0.72rem; }
.pr-breadcrumb-current { color: var(--pr-text); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   5. HERO SECTION
══════════════════════════════════════════════════════════ */
.pr-hero {
  background: var(--pr-hero-bg);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.pr-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16,185,129,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(20,184,166,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pr-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.pr-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--pr-primary-light);
  padding: 7px 16px; border-radius: 50px;
  font-size: 0.84rem; font-weight: 600;
  margin-bottom: 22px;
}
.pr-hero-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900; line-height: 1.15;
  color: var(--pr-text);
  margin-bottom: 18px;
}
.pr-hero-sub {
  color: var(--pr-text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 500px;
}
.pr-hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 30px;
}
.pr-hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.pr-hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.83rem; color: var(--pr-text-muted);
}
.pr-hero-trust-item .fa-check-circle { color: var(--pr-primary); }

/* Hero Visual — Pricing preview card */
.pr-hero-visual { display: flex; flex-direction: column; gap: 16px; }

.pr-hero-panel {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--pr-radius-lg);
  padding: 22px 24px;
  backdrop-filter: blur(8px);
}
.pr-hero-panel-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--pr-primary-light);
  font-weight: 600; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pr-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pr-primary);
  box-shadow: 0 0 8px var(--pr-primary);
  animation: pr-pulse 1.8s ease-in-out infinite;
}
@keyframes pr-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.pr-hero-plans {
  display: flex; flex-direction: column; gap: 10px;
}
.pr-hero-plan-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(16,185,129,0.08);
  transition: border-color var(--pr-transition), background var(--pr-transition);
}
.pr-hero-plan-row:hover { border-color: rgba(16,185,129,0.25); background: rgba(16,185,129,0.06); }
.pr-hero-plan-row.popular { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.06); }
.pr-hero-plan-name { font-size: 0.88rem; font-weight: 700; color: var(--pr-text); display: flex; align-items: center; gap: 8px; }
.pr-hero-plan-name .badge-pop { font-size: 0.68rem; background: var(--pr-gold); color: #000; padding: 2px 8px; border-radius: 20px; font-weight: 800; }
.pr-hero-plan-price { font-size: 0.88rem; font-weight: 800; color: var(--pr-primary-light); }
.pr-hero-plan-price.gold { color: var(--pr-gold); }

.pr-hero-savings {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.pr-hero-save-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: 8px;
  font-size: 0.81rem;
  flex: 1; min-width: 130px;
}
.pr-hero-save-pill i { color: var(--pr-primary); }
.pr-hero-save-pill strong { color: var(--pr-primary-light); }

/* ══════════════════════════════════════════════════════════
   6. STATS RIBBON
══════════════════════════════════════════════════════════ */
.pr-stats-ribbon {
  background: var(--pr-surface);
  border-top: 1px solid rgba(16,185,129,0.1);
  border-bottom: 1px solid rgba(16,185,129,0.1);
  padding: 28px 0;
}
.pr-stats-ribbon-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 36px;
}
.pr-stat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
}
.pr-stat-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(16,185,129,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--pr-primary); font-size: 1.1rem;
  flex-shrink: 0;
}
.pr-stat-val {
  font-size: 1.45rem; font-weight: 900;
  background: linear-gradient(90deg, var(--pr-primary-light), var(--pr-teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.pr-stat-lbl { font-size: 0.78rem; color: var(--pr-text-muted); font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   7. BILLING TOGGLE
══════════════════════════════════════════════════════════ */
.pr-toggle-wrap {
  padding: 48px 0 20px;
  text-align: center;
}
.pr-toggle-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.pr-toggle-label {
  font-size: 1.1rem; font-weight: 700; color: var(--pr-text); margin-bottom: 18px;
}
.pr-billing-toggle {
  display: inline-flex; align-items: center; gap: 0;
  background: var(--pr-surface);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 50px; padding: 4px;
  position: relative;
}
.pr-billing-btn {
  padding: 10px 28px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700; color: var(--pr-text-muted);
  transition: all var(--pr-transition);
  position: relative; z-index: 1;
}
.pr-billing-btn.active {
  background: linear-gradient(135deg, var(--pr-primary), var(--pr-teal));
  color: #fff;
  box-shadow: 0 2px 12px rgba(16,185,129,0.35);
}
.pr-save-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--pr-gold);
  padding: 5px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700;
  margin-left: 14px;
  vertical-align: middle;
}

/* ══════════════════════════════════════════════════════════
   8. PRICING CARDS
══════════════════════════════════════════════════════════ */
.pr-cards-section { padding: 20px 0 80px; }
.pr-cards-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.pr-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pr-card {
  background: var(--pr-card-bg);
  border: 1px solid var(--pr-card-border);
  border-radius: var(--pr-radius-lg);
  padding: 30px 24px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition), border-color var(--pr-transition);
}
.pr-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pr-shadow-hover);
  border-color: rgba(16,185,129,0.35);
}
.pr-card.popular {
  background: var(--pr-popular-bg);
  border-color: rgba(16,185,129,0.45);
  box-shadow: 0 8px 40px rgba(16,185,129,0.22);
  transform: scale(1.03);
  z-index: 2;
}
.pr-card.popular:hover { transform: scale(1.03) translateY(-6px); }

.pr-card-badge-wrap {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}
.pr-card-badge {
  background: linear-gradient(90deg, var(--pr-gold), var(--pr-gold-dark));
  color: #000; font-size: 0.72rem; font-weight: 800;
  padding: 5px 16px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

.pr-card-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(16,185,129,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--pr-primary);
  margin-bottom: 16px;
}
.pr-card.popular .pr-card-icon { background: rgba(255,255,255,0.12); color: var(--pr-gold); }

.pr-card-plan { font-size: 0.82rem; font-weight: 700; color: var(--pr-primary-light); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.pr-card.popular .pr-card-plan { color: var(--pr-gold-light); }

.pr-card-name { font-size: 1.3rem; font-weight: 900; color: var(--pr-text); margin-bottom: 10px; }

.pr-card-price-wrap { margin-bottom: 6px; }
.pr-card-price {
  font-size: 2.4rem; font-weight: 900;
  background: linear-gradient(90deg, var(--pr-primary-light), var(--pr-teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pr-card.popular .pr-card-price {
  background: linear-gradient(90deg, var(--pr-gold), var(--pr-gold-light));
  -webkit-background-clip: text; background-clip: text;
}
.pr-card-price sup { font-size: 1rem; vertical-align: top; margin-top: 8px; font-weight: 700; }
.pr-card-price sub { font-size: 0.65rem; font-weight: 500; color: var(--pr-text-muted); vertical-align: baseline; -webkit-text-fill-color: var(--pr-text-muted); }
.pr-card-price-annual { font-size: 0.8rem; color: var(--pr-text-muted); margin-bottom: 4px; }
.pr-card-price-annual .strike { text-decoration: line-through; color: var(--pr-text-subtle); }
.pr-card-price-annual .save { color: var(--pr-gold); font-weight: 700; margin-left: 6px; }
.pr-card-desc { font-size: 0.87rem; color: var(--pr-text-muted); margin-bottom: 20px; line-height: 1.5; }

.pr-card-divider { height: 1px; background: rgba(16,185,129,0.12); margin: 16px 0; }

.pr-card-features { flex: 1; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.pr-card-feat {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.86rem; color: var(--pr-text-muted); line-height: 1.4;
}
.pr-card-feat i { color: var(--pr-primary); font-size: 0.78rem; margin-top: 3px; flex-shrink: 0; }
.pr-card.popular .pr-card-feat i { color: var(--pr-gold); }
.pr-card-feat.dim { opacity: 0.45; }
.pr-card-feat.dim i { color: var(--pr-text-subtle); }

.pr-card-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
  border: 2px solid transparent;
}
.pr-card-cta-primary {
  background: linear-gradient(135deg, var(--pr-primary), var(--pr-teal));
  color: #fff;
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}
.pr-card-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(16,185,129,0.5); }
.pr-card-cta-gold {
  background: linear-gradient(135deg, var(--pr-gold), var(--pr-gold-dark));
  color: #000;
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.pr-card-cta-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,0.55); }
.pr-card-cta-outline {
  border-color: rgba(16,185,129,0.3);
  color: var(--pr-primary-light);
}
.pr-card-cta-outline:hover { border-color: var(--pr-primary); background: rgba(16,185,129,0.08); }

.pr-card-note { font-size: 0.76rem; color: var(--pr-text-subtle); text-align: center; margin-top: 10px; }

/* ══════════════════════════════════════════════════════════
   9. FEATURE COMPARISON TABLE
══════════════════════════════════════════════════════════ */
.pr-compare-section { padding: 80px 0; background: var(--pr-surface); }
.pr-compare-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.pr-table-wrap { overflow-x: auto; border-radius: var(--pr-radius-lg); border: 1px solid rgba(16,185,129,0.12); }
.pr-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--pr-card-bg);
}
.pr-table th {
  padding: 16px 18px;
  text-align: center;
  font-size: 0.85rem; font-weight: 800;
  color: var(--pr-text-muted);
  background: var(--pr-surface);
  border-bottom: 2px solid rgba(16,185,129,0.15);
  white-space: nowrap;
}
.pr-table th:first-child { text-align: left; padding-left: 24px; min-width: 220px; }
.pr-table th.popular-col { background: rgba(16,185,129,0.08); color: var(--pr-gold); }

.pr-table td {
  padding: 13px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(16,185,129,0.07);
  color: var(--pr-text-muted);
  vertical-align: middle;
}
.pr-table td:first-child { text-align: left; padding-left: 24px; color: var(--pr-text); font-weight: 500; }
.pr-table td.popular-col { background: rgba(16,185,129,0.04); }
.pr-table tr:last-child td { border-bottom: none; }
.pr-table tr:hover td { background: rgba(16,185,129,0.03); }

.pr-table-group { background: rgba(16,185,129,0.06); }
.pr-table-group td {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--pr-primary-light);
  padding: 10px 18px;
}
.pr-table-group td:first-child { padding-left: 24px; }

.pr-check { color: var(--pr-primary); font-size: 1rem; }
.pr-cross { color: var(--pr-text-subtle); font-size: 0.9rem; opacity: 0.4; }
.pr-partial { color: var(--pr-gold); font-size: 0.8rem; font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   10. ADD-ON MODULES
══════════════════════════════════════════════════════════ */
.pr-addons-section { padding: 80px 0; }
.pr-addons-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.pr-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pr-addon-card {
  background: var(--pr-card-bg);
  border: 1px solid var(--pr-card-border);
  border-radius: var(--pr-radius);
  padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color var(--pr-transition), box-shadow var(--pr-transition), transform var(--pr-transition);
}
.pr-addon-card:hover {
  border-color: rgba(16,185,129,0.3);
  box-shadow: var(--pr-shadow);
  transform: translateY(-3px);
}
.pr-addon-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(16,185,129,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--pr-primary); font-size: 1.2rem;
  flex-shrink: 0;
}
.pr-addon-title { font-size: 1rem; font-weight: 800; color: var(--pr-text); margin-bottom: 4px; }
.pr-addon-desc { font-size: 0.83rem; color: var(--pr-text-muted); line-height: 1.5; margin-bottom: 10px; }
.pr-addon-price { font-size: 0.88rem; font-weight: 700; color: var(--pr-gold); }

/* ══════════════════════════════════════════════════════════
   11. SPECIAL OFFERS
══════════════════════════════════════════════════════════ */
.pr-offers-section { padding: 80px 0; background: var(--pr-surface); }
.pr-offers-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.pr-offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.pr-offer-card {
  background: var(--pr-card-bg);
  border: 1px solid var(--pr-card-border);
  border-radius: var(--pr-radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
}
.pr-offer-card:hover { transform: translateY(-4px); box-shadow: var(--pr-shadow-hover); }
.pr-offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pr-primary), var(--pr-teal));
}
.pr-offer-card.gold-border::before {
  background: linear-gradient(90deg, var(--pr-gold), var(--pr-gold-dark));
}
.pr-offer-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.pr-offer-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(16,185,129,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--pr-primary); font-size: 1.3rem; flex-shrink: 0;
}
.pr-offer-card.gold-border .pr-offer-icon { background: rgba(245,158,11,0.1); color: var(--pr-gold); }
.pr-offer-title { font-size: 1.1rem; font-weight: 800; color: var(--pr-text); }
.pr-offer-subtitle { font-size: 0.82rem; color: var(--pr-text-muted); }
.pr-offer-desc { font-size: 0.88rem; color: var(--pr-text-muted); line-height: 1.6; margin-bottom: 14px; }
.pr-offer-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--pr-primary-light);
  padding: 5px 13px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700;
}
.pr-offer-card.gold-border .pr-offer-tag {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.25);
  color: var(--pr-gold);
}

/* ══════════════════════════════════════════════════════════
   12. HOW PRICING WORKS
══════════════════════════════════════════════════════════ */
.pr-process-section { padding: 80px 0; }
.pr-process-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.pr-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 50px;
}
.pr-process-steps::before {
  content: '';
  position: absolute;
  top: 34px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--pr-primary), var(--pr-teal), var(--pr-primary));
  opacity: 0.25;
}
.pr-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px;
  position: relative;
}
.pr-step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--pr-card-bg);
  border: 2px solid rgba(16,185,129,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--pr-primary);
  margin-bottom: 16px;
  position: relative; z-index: 1;
  transition: background var(--pr-transition), border-color var(--pr-transition);
}
.pr-step:hover .pr-step-num {
  background: rgba(16,185,129,0.12);
  border-color: var(--pr-primary);
}
.pr-step-title { font-size: 0.92rem; font-weight: 800; color: var(--pr-text); margin-bottom: 6px; }
.pr-step-desc { font-size: 0.8rem; color: var(--pr-text-muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   13. TRUST / GUARANTEES
══════════════════════════════════════════════════════════ */
.pr-trust-section {
  padding: 60px 0;
  background: rgba(16,185,129,0.04);
  border-top: 1px solid rgba(16,185,129,0.1);
  border-bottom: 1px solid rgba(16,185,129,0.1);
}
.pr-trust-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.pr-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pr-trust-card {
  background: var(--pr-card-bg);
  border: 1px solid var(--pr-card-border);
  border-radius: var(--pr-radius);
  padding: 24px;
  text-align: center;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
}
.pr-trust-card:hover { transform: translateY(-4px); box-shadow: var(--pr-shadow); }
.pr-trust-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(16,185,129,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--pr-primary); font-size: 1.4rem;
  margin: 0 auto 14px;
}
.pr-trust-title { font-size: 1rem; font-weight: 800; color: var(--pr-text); margin-bottom: 6px; }
.pr-trust-desc { font-size: 0.83rem; color: var(--pr-text-muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   14. TESTIMONIALS
══════════════════════════════════════════════════════════ */
.pr-testi-section { padding: 80px 0; background: var(--pr-surface-alt); }
.pr-testi-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.pr-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pr-testi-card {
  background: var(--pr-card-bg);
  border: 1px solid var(--pr-card-border);
  border-radius: var(--pr-radius);
  padding: 26px;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
}
.pr-testi-card:hover { transform: translateY(-4px); box-shadow: var(--pr-shadow); }
.pr-testi-stars { color: var(--pr-gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.pr-testi-quote { font-size: 0.92rem; color: var(--pr-text-muted); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.pr-testi-author { display: flex; align-items: center; gap: 12px; }
.pr-testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(16,185,129,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--pr-primary); font-size: 1rem;
  flex-shrink: 0;
}
.pr-testi-name { font-size: 0.9rem; font-weight: 800; color: var(--pr-text); }
.pr-testi-role { font-size: 0.78rem; color: var(--pr-text-muted); }
.pr-testi-metric {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.15);
  color: var(--pr-primary-light);
  font-size: 0.76rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   15. FAQ ACCORDION
══════════════════════════════════════════════════════════ */
.pr-faq-section { padding: 80px 0; }
.pr-faq-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.pr-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}
.pr-faq-item {
  background: var(--pr-card-bg);
  border: 1px solid var(--pr-card-border);
  border-radius: var(--pr-radius);
  overflow: hidden;
  transition: border-color var(--pr-transition);
}
.pr-faq-item.open { border-color: rgba(16,185,129,0.3); }

.pr-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 0.93rem; font-weight: 700; color: var(--pr-text);
  gap: 10px;
  user-select: none;
  transition: color var(--pr-transition);
}
.pr-faq-q:hover { color: var(--pr-primary-light); }
.pr-faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(16,185,129,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--pr-primary); font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform var(--pr-transition), background var(--pr-transition);
}
.pr-faq-item.open .pr-faq-icon { transform: rotate(45deg); background: var(--pr-primary); color: #fff; }

.pr-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.88rem; color: var(--pr-text-muted); line-height: 1.65;
  padding: 0 20px;
}
.pr-faq-item.open .pr-faq-a { max-height: 300px; padding: 0 20px 18px; }

/* ══════════════════════════════════════════════════════════
   16. DEMO FORM
══════════════════════════════════════════════════════════ */
.pr-form-section { padding: 80px 0; background: var(--pr-surface); }
.pr-form-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start;
}
.pr-form-left-title { font-size: 1.7rem; font-weight: 900; color: var(--pr-text); margin-bottom: 14px; line-height: 1.3; }
.pr-form-left-sub { font-size: 0.95rem; color: var(--pr-text-muted); margin-bottom: 28px; line-height: 1.6; }
.pr-form-benefits { display: flex; flex-direction: column; gap: 12px; }
.pr-form-benefit {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--pr-text-muted); line-height: 1.5;
}
.pr-form-benefit i { color: var(--pr-primary); margin-top: 2px; flex-shrink: 0; }

.pr-form-card {
  background: var(--pr-card-bg);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: var(--pr-radius-lg);
  padding: 34px;
}
.pr-form-title { font-size: 1.2rem; font-weight: 800; color: var(--pr-text); margin-bottom: 6px; }
.pr-form-sub { font-size: 0.85rem; color: var(--pr-text-muted); margin-bottom: 24px; }

.pr-form { display: flex; flex-direction: column; gap: 16px; }
.pr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pr-form-group { display: flex; flex-direction: column; gap: 6px; }
.pr-form-group label { font-size: 0.82rem; font-weight: 700; color: var(--pr-text-muted); }
.pr-form-group label span { color: #ef4444; }
.pr-form-group input,
.pr-form-group select,
.pr-form-group textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 10px;
  color: var(--pr-text); font-family: var(--pr-font); font-size: 0.9rem;
  outline: none;
  transition: border-color var(--pr-transition), box-shadow var(--pr-transition);
}
.pr-form-group input:focus,
.pr-form-group select:focus,
.pr-form-group textarea:focus {
  border-color: var(--pr-primary);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.pr-form-group input.error,
.pr-form-group select.error { border-color: #ef4444; }
.pr-form-group select option { background: #0e1a14; }
.pr-form-group textarea { resize: vertical; min-height: 80px; }
.pr-form-error { font-size: 0.75rem; color: #ef4444; min-height: 16px; }

.pr-form-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--pr-primary), var(--pr-teal));
  color: #fff; font-weight: 800; font-size: 0.97rem; border-radius: 50px;
  transition: transform var(--pr-transition), box-shadow var(--pr-transition);
  box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}
.pr-form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(16,185,129,0.5); }
.pr-form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.pr-form-success {
  display: none; text-align: center; padding: 30px 20px;
}
.pr-form-success.show { display: block; }
.pr-form-success-icon { font-size: 2.8rem; color: var(--pr-primary); margin-bottom: 12px; }
.pr-form-success h4 { font-size: 1.2rem; font-weight: 800; color: var(--pr-text); margin-bottom: 8px; }
.pr-form-success p { font-size: 0.9rem; color: var(--pr-text-muted); }

.pr-form-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; font-size: 0.84rem; color: var(--pr-text-muted);
}
.pr-form-wa a { color: #25d366; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.pr-form-wa a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   17. CTA BAND
══════════════════════════════════════════════════════════ */
.pr-cta-band {
  padding: 70px 0;
  background: linear-gradient(135deg, #042e1a 0%, #064e35 50%, #042e1a 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.pr-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(16,185,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pr-cta-band-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.pr-cta-band-title { font-size: clamp(1.7rem,3.5vw,2.5rem); font-weight: 900; color: var(--pr-text); margin-bottom: 16px; line-height: 1.2; }
.pr-cta-band-sub { font-size: 1.05rem; color: var(--pr-text-muted); margin-bottom: 34px; }
.pr-cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.pr-cta-trust-pills { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.pr-cta-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--pr-text-muted);
}
.pr-cta-pill i { color: var(--pr-primary); }

/* ══════════════════════════════════════════════════════════
   18. FOOTER
══════════════════════════════════════════════════════════ */
.pr-footer {
  background: #040a06;
  border-top: 1px solid rgba(16,185,129,0.1);
  padding: 60px 0 0;
}
.pr-footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pr-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.pr-footer-brand { }
.pr-footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.pr-footer-logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--pr-primary), var(--pr-teal));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
}
.pr-footer-logo-main { font-size: 1.05rem; font-weight: 900; color: var(--pr-text); }
.pr-footer-logo-sub { font-size: 0.7rem; color: var(--pr-text-muted); }
.pr-footer-desc { font-size: 0.85rem; color: var(--pr-text-muted); line-height: 1.6; margin-bottom: 18px; }
.pr-footer-social { display: flex; gap: 10px; }
.pr-footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--pr-text-muted); font-size: 0.9rem;
  transition: background var(--pr-transition), color var(--pr-transition), border-color var(--pr-transition);
}
.pr-footer-social a:hover { background: rgba(16,185,129,0.2); color: var(--pr-primary); border-color: var(--pr-primary); }
.pr-footer-col-title { font-size: 0.85rem; font-weight: 800; color: var(--pr-text); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.pr-footer-col a {
  display: block; font-size: 0.85rem; color: var(--pr-text-muted);
  padding: 4px 0;
  transition: color var(--pr-transition);
}
.pr-footer-col a:hover { color: var(--pr-primary-light); }
.pr-footer-divider { border: none; border-top: 1px solid rgba(16,185,129,0.08); margin: 0; }
.pr-footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 10px; font-size: 0.8rem; color: var(--pr-text-subtle);
}
.pr-footer-bottom a { color: var(--pr-text-subtle); transition: color var(--pr-transition); }
.pr-footer-bottom a:hover { color: var(--pr-primary-light); }

/* ══════════════════════════════════════════════════════════
   19. BACK TO TOP / MOBILE STICKY
══════════════════════════════════════════════════════════ */
.pr-back-top {
  position: fixed; bottom: 90px; right: 22px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--pr-primary);
  color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(16,185,129,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--pr-transition), transform var(--pr-transition);
  z-index: 900;
}
.pr-back-top.visible { opacity: 1; pointer-events: auto; }
.pr-back-top:hover { transform: translateY(-3px); }

.pr-sticky-mobile {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #042e1a;
  border-top: 1px solid rgba(16,185,129,0.25);
  padding: 10px 16px;
  z-index: 800;
  gap: 8px;
}
.pr-sticky-call,
.pr-sticky-demo,
.pr-sticky-wa {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 6px; border-radius: 10px;
  font-size: 0.82rem; font-weight: 700;
}
.pr-sticky-call { background: rgba(16,185,129,0.12); color: var(--pr-primary-light); border: 1px solid rgba(16,185,129,0.25); }
.pr-sticky-demo { background: var(--pr-primary); color: #fff; }
.pr-sticky-wa   { background: rgba(37,211,102,0.12); color: #25d366; border: 1px solid rgba(37,211,102,0.25); }

/* ══════════════════════════════════════════════════════════
   20. RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pr-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-card.popular { transform: none; }
  .pr-card.popular:hover { transform: translateY(-6px); }
  .pr-process-steps { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .pr-process-steps::before { display: none; }
  .pr-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pr-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pr-hero-visual { display: none; }
  .pr-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .pr-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .pr-testi-grid { grid-template-columns: 1fr; }
  .pr-addons-grid { grid-template-columns: 1fr 1fr; }
  .pr-offers-grid { grid-template-columns: 1fr; }
  .pr-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pr-cards-grid { grid-template-columns: 1fr; }
  .pr-process-steps { grid-template-columns: 1fr 1fr; }
  .pr-trust-grid { grid-template-columns: 1fr 1fr; }
  .pr-addons-grid { grid-template-columns: 1fr; }
  .pr-footer-grid { grid-template-columns: 1fr; }
  .pr-form-row { grid-template-columns: 1fr; }
  .pr-sticky-mobile { display: flex; }
  .pr-back-top { bottom: 72px; }
  .pr-section { padding: 56px 0; }
  .pr-hero { padding: 64px 0 50px; }
  .pr-billing-btn { padding: 9px 18px; font-size: 0.85rem; }
}

/* ══════════════════════════════════════════════════════════
   21. ANIMATIONS & UTILITIES
══════════════════════════════════════════════════════════ */
.pr-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pr-reveal.visible { opacity: 1; transform: translateY(0); }
.pr-reveal-delay-1 { transition-delay: 0.1s; }
.pr-reveal-delay-2 { transition-delay: 0.2s; }
.pr-reveal-delay-3 { transition-delay: 0.3s; }
.pr-reveal-delay-4 { transition-delay: 0.4s; }

@keyframes pr-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.pr-float { animation: pr-float 4s ease-in-out infinite; }

/* Data-price switching */
.pr-annual-price { display: none; }
body.annual-billing .pr-monthly-price { display: none; }
body.annual-billing .pr-annual-price { display: inline; }
