/* ═══════════════════════════════════════════════════════
   VPNexues Pricing Page Redesign
   Design System: VPNexues Brand Consistent
   Font: Nunito | Colors: #5B8C51, #14472F, #F2B233
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables (VPNexues Brand) ── */
:root {
  --pr-primary: #5B8C51;
  --pr-primary-dark: #14472F;
  --pr-primary-darker: #0d3018;
  --pr-primary-light: #7CB971;
  --pr-accent: #F2B233;
  --pr-accent-dark: #e0a32f;
  --pr-bg: #F6F9F2;
  --pr-bg-alt: #EEF4E7;
  --pr-surface: #ffffff;
  --pr-text: #1e3318;
  --pr-text-secondary: #5c6f61;
  --pr-text-muted: #8a9a8c;
  --pr-border: #dde8d8;
  --pr-border-light: #eef3ea;
  --pr-shadow-sm: 0 2px 8px rgba(44,79,37,.06);
  --pr-shadow-md: 0 4px 20px rgba(44,79,37,.10);
  --pr-shadow-lg: 0 8px 40px rgba(44,79,37,.14);
  --pr-shadow-xl: 0 16px 56px rgba(44,79,37,.18);
  --pr-radius: 16px;
  --pr-radius-lg: 24px;
  --pr-radius-pill: 999px;
  --pr-transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════
   PRICING HERO SECTION
   ═══════════════════════════════════════ */
.pr-hero {
  position: relative;
  padding: 70px 0 50px;
  background: linear-gradient(180deg, #0d3018 0%, #14472F 35%, #1a6b2a 70%, #1e7a2e 100%);
  overflow: hidden;
  text-align: center;
}

.pr-hero::before {
  display: none;
}

.pr-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,178,51,.08), transparent 70%);
  pointer-events: none;
}

.pr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.pr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--pr-radius-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font: 700 12px/1 'Nunito', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.pr-hero-badge i {
  color: var(--pr-accent);
  font-size: 11px;
}

.pr-hero h1 {
  margin: 0 0 14px;
  color: #fff;
  font: 900 clamp(32px, 5vw, 52px)/1.1 'Nunito', sans-serif;
  letter-spacing: -0.5px;
}

.pr-hero h1 .pr-hero-highlight {
  display: inline;
  background: linear-gradient(135deg, var(--pr-accent) 0%, #ffd700 50%, var(--pr-accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: prHeroShimmer 4s linear infinite;
}

@keyframes prHeroShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.pr-hero-desc {
  margin: 0 0 22px;
  color: rgba(255,255,255,.78);
  font: 600 16px/1.6 'Nunito', sans-serif;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pr-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.pr-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--pr-radius-pill);
  background: rgba(141,198,63,.15);
  border: 1px solid rgba(141,198,63,.25);
  color: #a8e6a3;
  font: 700 12px/1 'Nunito', sans-serif;
}

.pr-hero-tag i {
  font-size: 10px;
  color: #8dc63f;
}

.pr-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pr-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--pr-radius);
  font: 800 14px/1 'Nunito', sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--pr-transition);
}

.pr-hero-btn.primary {
  background: var(--pr-accent);
  color: var(--pr-primary-dark);
  box-shadow: 0 4px 16px rgba(242,178,51,.3);
}

.pr-hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,178,51,.4);
}

.pr-hero-btn.outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}

.pr-hero-btn.outline:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

.pr-hero-actions .pr-hero-btn.outline {
  background: rgba(20,71,47,.55);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pr-hero-actions .pr-hero-btn.outline:hover {
  background: rgba(20,71,47,.75);
}

/* Bottom curve */
.pr-hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
}

.pr-hero-curve svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}

/* ═══════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════ */
.pricing-section-v2 {
  padding: 80px 0 60px;
  background: var(--pr-bg);
  position: relative;
}

.pr-sec-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 24px;
}

.pr-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--pr-radius-pill);
  background: rgba(91,140,81,.08);
  border: 1px solid rgba(91,140,81,.12);
  color: var(--pr-primary);
  font: 700 11px/1 'Nunito', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pr-sec-tag i {
  font-size: 10px;
}

.pr-sec-title {
  margin: 0 0 12px;
  color: var(--pr-text);
  font: 900 clamp(28px, 4vw, 40px)/1.15 'Nunito', sans-serif;
  letter-spacing: -0.3px;
}

.pr-sec-desc {
  margin: 0 auto;
  color: var(--pr-text-secondary);
  font: 600 15px/1.6 'Nunito', sans-serif;
  max-width: 520px;
}

/* ═══════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════ */
.pr-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.pr-card {
  position: relative;
  background: var(--pr-surface);
  border-radius: var(--pr-radius-lg);
  border: 1.5px solid var(--pr-border-light);
  padding: 36px 32px 32px;
  transition: var(--pr-transition);
  overflow: hidden;
}

.pr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pr-border-light);
  transition: var(--pr-transition);
}

.pr-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pr-shadow-lg);
  border-color: rgba(91,140,81,.2);
}

.pr-card:hover::before {
  background: var(--pr-primary);
}

/* Featured Card */
.pr-card.featured {
  border-color: var(--pr-accent);
  box-shadow: var(--pr-shadow-md), 0 0 0 1px rgba(242,178,51,.15);
  transform: scale(1.04);
  z-index: 2;
}

.pr-card.featured::before {
  background: linear-gradient(90deg, var(--pr-accent), var(--pr-accent-dark));
  height: 5px;
}

.pr-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: var(--pr-shadow-xl), 0 0 0 1px rgba(242,178,51,.2);
}

.pr-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  border-radius: var(--pr-radius-pill);
  background: linear-gradient(135deg, var(--pr-accent), var(--pr-accent-dark));
  color: var(--pr-primary-dark);
  font: 800 10px/1 'Nunito', sans-serif;
  text-transform: uppercase;
  letter-spacing: .8px;
  box-shadow: 0 2px 8px rgba(242,178,51,.3);
}

.pr-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #eef5ea, #dce8d6);
  transition: var(--pr-transition);
}

.pr-card:hover .pr-card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.pr-card-plan {
  margin: 0 0 6px;
  color: var(--pr-text);
  font: 800 22px/1.2 'Nunito', sans-serif;
}

.pr-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.pr-card-price .pr-amount {
  color: var(--pr-primary-dark);
  font: 900 40px/1 'Nunito', sans-serif;
  letter-spacing: -1px;
}

.pr-card.featured .pr-card-price .pr-amount {
  color: var(--pr-primary);
}

.pr-card-price .pr-unit {
  color: var(--pr-text-muted);
  font: 600 14px/1 'Nunito', sans-serif;
}

.pr-card-desc {
  margin: 0 0 20px;
  color: var(--pr-text-secondary);
  font: 600 13px/1.5 'Nunito', sans-serif;
}

.pr-card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pr-border), transparent);
  margin: 0 0 20px;
  border: none;
}

.pr-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pr-card-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font: 600 13px/1.4 'Nunito', sans-serif;
  color: var(--pr-text-secondary);
}

.pr-card-feat i {
  color: var(--pr-primary);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pr-card.featured .pr-card-feat i {
  color: var(--pr-primary);
}

.pr-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--pr-radius);
  font: 800 14px/1 'Nunito', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: var(--pr-transition);
  border: none;
}

.pr-card-btn.primary {
  background: linear-gradient(135deg, var(--pr-primary), var(--pr-primary-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(91,140,81,.25);
}

.pr-card-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,140,81,.35);
}

.pr-card-btn.accent {
  background: linear-gradient(135deg, var(--pr-accent), var(--pr-accent-dark));
  color: var(--pr-primary-dark);
  box-shadow: 0 4px 14px rgba(242,178,51,.25);
}

.pr-card-btn.accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242,178,51,.35);
}

.pr-card-btn.outline {
  background: transparent;
  color: var(--pr-primary);
  border: 2px solid var(--pr-primary);
}

.pr-card-btn.outline:hover {
  background: var(--pr-primary);
  color: #fff;
  transform: translateY(-2px);
}

.pr-card-btn i {
  font-size: 12px;
  transition: transform .2s ease;
}

.pr-card-btn:hover i {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════
   COMPARISON SECTION
   ═══════════════════════════════════════ */
.pr-comparison-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(91,140,81,.07), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(242,178,51,.06), transparent 42%),
    var(--pr-surface);
}

.pr-comparison-table {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.pr-comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  box-shadow: var(--pr-shadow-lg);
  border: 1px solid var(--pr-border-light);
  background: var(--pr-surface);
}

.pr-comp-table thead th {
  padding: 24px 24px 18px;
  text-align: center;
  font: 800 15px/1.2 'Nunito', sans-serif;
  color: var(--pr-text);
  background: var(--pr-bg);
  border-bottom: 2px solid var(--pr-border);
  position: relative;
}

.pr-comp-table thead th:first-child {
  text-align: left;
  color: var(--pr-text-secondary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding-left: 28px;
}

.pr-comp-table thead th.pr-comp-featured {
  background: linear-gradient(135deg, var(--pr-primary), var(--pr-primary-dark));
  color: #fff;
  position: relative;
  border-radius: 18px 18px 0 0;
}

.pr-comp-table thead th .pr-comp-plan-icon {
  display: block;
  margin: 0 auto 8px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  color: var(--pr-primary-dark);
  font-size: 18px;
  line-height: 44px;
  box-shadow: var(--pr-shadow-sm);
}

.pr-comp-table thead th.pr-comp-featured .pr-comp-plan-icon {
  background: var(--pr-accent);
  color: var(--pr-primary-dark);
}

.pr-comp-table thead th.pr-comp-featured::after {
  content: 'Best Value';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--pr-accent);
  color: var(--pr-primary-dark);
  font: 800 9px/1 'Nunito', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 10px rgba(242,178,51,.4);
}

.pr-comp-table tbody td {
  padding: 16px 20px;
  text-align: center;
  font: 600 13px/1.4 'Nunito', sans-serif;
  color: var(--pr-text-secondary);
  border-bottom: 1px solid var(--pr-border-light);
  transition: background .2s ease;
}

.pr-comp-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--pr-text);
  padding-left: 28px;
}

.pr-comp-table tbody tr:nth-child(even) td {
  background: #fbfdf9;
}

.pr-comp-table tbody tr:hover td {
  background: rgba(91,140,81,.05);
}

.pr-comp-table tbody tr:hover td:first-child {
  background: rgba(91,140,81,.08);
}

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

.pr-comp-table .pr-comp-check {
  color: var(--pr-primary);
  font-size: 15px;
  background: rgba(91,140,81,.12);
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 50%;
  display: inline-block;
}

.pr-comp-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.pr-comp-item .pr-comp-check,
.pr-comp-item .pr-comp-cross {
  flex: 0 0 26px;
  margin: 0;
}

.pr-comp-item .pr-comp-label {
  display: inline-block;
  min-width: 95px;
  text-align: left;
}

.pr-comp-table .pr-comp-cross {
  color: #c4ccd3;
  font-size: 13px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 50%;
  display: inline-block;
  background: #f1f3f0;
}

.pr-comp-table .pr-comp-highlight {
  background: rgba(242,178,51,.06);
  font-weight: 700;
  color: var(--pr-primary-dark);
}

.pr-comp-table tbody tr:nth-child(even) td.pr-comp-highlight {
  background: rgba(242,178,51,.09);
}

.pr-comp-table tbody tr:hover td.pr-comp-highlight {
  background: rgba(242,178,51,.14);
}

/* Comparison CTA row */
.pr-comp-cta-row td {
  padding: 22px 20px 26px;
  text-align: center;
  background: var(--pr-bg);
}

.pr-comp-cta-row td.pr-comp-highlight {
  border-radius: 0 0 18px 18px;
}

.pr-comp-cta-row td:first-child {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--pr-text-muted);
  background: var(--pr-bg);
}

.pr-comp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--pr-radius-pill);
  background: var(--pr-surface);
  border: 2px solid var(--pr-border);
  color: var(--pr-text);
  font: 800 13px/1 'Nunito', sans-serif;
  cursor: pointer;
  transition: var(--pr-transition);
  text-decoration: none;
}

.pr-comp-cta:hover {
  border-color: var(--pr-primary);
  color: var(--pr-primary);
  transform: translateY(-2px);
  box-shadow: var(--pr-shadow-md);
}

.pr-comp-cta.pr-comp-cta-featured {
  background: linear-gradient(135deg, var(--pr-primary), var(--pr-primary-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(20,71,47,.25);
}

.pr-comp-cta.pr-comp-cta-featured:hover {
  background: linear-gradient(135deg, var(--pr-primary-dark), var(--pr-primary-darker));
  color: #fff;
  transform: translateY(-2px);
}

.pr-comp-cta.pr-comp-cta-gold {
  background: linear-gradient(135deg, var(--pr-accent), var(--pr-accent-dark));
  border-color: transparent;
  color: var(--pr-primary-dark);
}

.pr-comp-cta.pr-comp-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,178,51,.35);
  color: var(--pr-primary-darker);
}

/* Mobile comparison cards */
.pr-comp-mobile {
  display: none;
  padding: 0 24px;
  gap: 22px;
  max-width: 480px;
  margin: 0 auto;
}

.pr-comp-card {
  background: var(--pr-surface);
  border-radius: var(--pr-radius-lg);
  border: 1.5px solid var(--pr-border-light);
  padding: 28px 24px 24px;
  transition: var(--pr-transition);
  box-shadow: var(--pr-shadow-sm);
}

.pr-comp-card:hover {
  box-shadow: var(--pr-shadow-md);
  transform: translateY(-3px);
}

.pr-comp-card.featured {
  border-color: var(--pr-accent);
  box-shadow: 0 6px 30px rgba(242,178,51,.18);
  background:
    linear-gradient(180deg, rgba(242,178,51,.06), transparent 40%),
    var(--pr-surface);
}

.pr-comp-card-head {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--pr-border-light);
}

.pr-comp-card-head h3 {
  margin: 0 0 6px;
  font: 800 18px/1.2 'Nunito', sans-serif;
  color: var(--pr-text);
}

.pr-comp-card-head span {
  display: inline-block;
  font: 700 13px/1 'Nunito', sans-serif;
  color: var(--pr-primary-dark);
  background: rgba(91,140,81,.1);
  border: 1px solid rgba(91,140,81,.2);
  padding: 7px 14px;
  border-radius: var(--pr-radius-pill);
}

.pr-comp-card.featured .pr-comp-card-head span {
  color: var(--pr-primary-dark);
  background: rgba(242,178,51,.16);
  border-color: rgba(242,178,51,.4);
}

.pr-comp-card-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pr-comp-card-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 13px/1.4 'Nunito', sans-serif;
  color: var(--pr-text-secondary);
}

.pr-comp-card-feat i {
  color: var(--pr-primary);
  font-size: 13px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.pr-comp-card .pr-comp-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding: 13px 20px;
  border-radius: var(--pr-radius-pill);
  background: var(--pr-surface);
  border: 2px solid var(--pr-border);
  color: var(--pr-text);
  font: 800 13px/1 'Nunito', sans-serif;
  cursor: pointer;
  transition: var(--pr-transition);
  text-decoration: none;
  width: 100%;
}

.pr-comp-card .pr-comp-card-cta:hover {
  border-color: var(--pr-primary);
  color: var(--pr-primary);
}

.pr-comp-card.featured .pr-comp-card-cta {
  background: linear-gradient(135deg, var(--pr-accent), var(--pr-accent-dark));
  border-color: transparent;
  color: var(--pr-primary-dark);
}

.pr-comp-card.featured .pr-comp-card-cta:hover {
  box-shadow: 0 8px 24px rgba(242,178,51,.35);
}

/* ═══════════════════════════════════════
   B2B OVERVIEW SECTION
   ═══════════════════════════════════════ */
.pr-b2b-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--pr-bg) 0%, var(--pr-bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.pr-b2b-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,140,81,.06), transparent 70%);
  pointer-events: none;
}

.pr-b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}

.pr-b2b-content {
  position: relative;
  z-index: 1;
}

.pr-b2b-content .pr-sec-tag {
  margin-bottom: 16px;
}

.pr-b2b-content h2 {
  margin: 0 0 16px;
  color: var(--pr-text);
  font: 900 clamp(28px, 3.5vw, 36px)/1.15 'Nunito', sans-serif;
}

.pr-b2b-content > p {
  margin: 0 0 28px;
  color: var(--pr-text-secondary);
  font: 600 15px/1.6 'Nunito', sans-serif;
}

.pr-b2b-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.pr-b2b-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pr-b2b-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef5ea, #dce8d6);
  color: var(--pr-primary);
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--pr-transition);
}

.pr-b2b-feat:hover .pr-b2b-feat-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 4px 12px rgba(91,140,81,.15);
}

.pr-b2b-feat-text h4 {
  margin: 0 0 4px;
  color: var(--pr-text);
  font: 800 15px/1.3 'Nunito', sans-serif;
}

.pr-b2b-feat-text p {
  margin: 0;
  color: var(--pr-text-secondary);
  font: 600 13px/1.5 'Nunito', sans-serif;
}

.pr-b2b-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* B2B Visual Card */
.pr-b2b-visual {
  position: relative;
}

.pr-b2b-card {
  background: linear-gradient(135deg, #14472F 0%, #1a6b2a 50%, #0d3018 100%);
  border-radius: var(--pr-radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.pr-b2b-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(141,198,63,.12);
  pointer-events: none;
}

.pr-b2b-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

.pr-b2b-card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.pr-b2b-stat {
  text-align: center;
  padding: 16px 12px;
  border-radius: var(--pr-radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pr-b2b-stat-num {
  display: block;
  font: 900 28px/1 'Nunito', sans-serif;
  color: var(--pr-accent);
  margin-bottom: 4px;
}

.pr-b2b-stat-lbl {
  font: 700 11px/1.2 'Nunito', sans-serif;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pr-b2b-card-quote {
  position: relative;
  z-index: 1;
  padding: 16px 20px;
  border-radius: var(--pr-radius);
  background: rgba(255,255,255,.06);
  border-left: 3px solid var(--pr-accent);
}

.pr-b2b-card-quote p {
  margin: 0 0 8px;
  font: 600 13px/1.5 'Nunito', sans-serif;
  color: rgba(255,255,255,.85);
  font-style: italic;
}

.pr-b2b-card-quote cite {
  font: 700 12px/1 'Nunito', sans-serif;
  color: rgba(255,255,255,.6);
  font-style: normal;
}

/* ═══════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════ */
.pr-steps-section {
  padding: 80px 0;
  background: var(--pr-surface);
}

.pr-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.pr-steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.667% + 5px);
  right: calc(16.667% + 5px);
  height: 2px;
  background: linear-gradient(90deg, var(--pr-border), var(--pr-primary), var(--pr-border));
  z-index: 0;
}

.pr-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.pr-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--pr-primary), var(--pr-primary-dark));
  color: #fff;
  font: 900 20px/1 'Nunito', sans-serif;
  box-shadow: 0 4px 14px rgba(91,140,81,.25);
  transition: var(--pr-transition);
}

.pr-step:hover .pr-step-num {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(91,140,81,.35);
}

.pr-step h4 {
  margin: 0 0 8px;
  color: var(--pr-text);
  font: 800 17px/1.2 'Nunito', sans-serif;
}

.pr-step p {
  margin: 0;
  color: var(--pr-text-secondary);
  font: 600 13px/1.5 'Nunito', sans-serif;
}

/* ═══════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════ */
.pr-faq-section {
  padding: 80px 0;
  background: var(--pr-bg);
}

.pr-faq-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.pr-faq-aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pr-faq-help-card {
  background: linear-gradient(135deg, #14472F 0%, #1a6b2a 60%, #2c7a46 100%);
  border-radius: 24px;
  padding: 34px 28px;
  color: #fff;
  box-shadow: var(--pr-shadow-xl);
  position: relative;
  overflow: hidden;
}

.pr-faq-help-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,178,51,.25), transparent 70%);
  pointer-events: none;
}

.pr-faq-help-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.pr-faq-help-card h3 {
  margin: 0 0 10px;
  font: 900 22px/1.25 'Nunito', sans-serif;
  color: #fff;
}

.pr-faq-help-card p {
  margin: 0 0 22px;
  font: 600 14px/1.7 'Nunito', sans-serif;
  color: rgba(255,255,255,.88);
}

.pr-faq-help-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font: 800 14px/1 'Nunito', sans-serif;
  text-decoration: none;
  transition: var(--pr-transition);
  margin-bottom: 10px;
}

.pr-faq-help-btn.primary {
  background: #F2B233;
  color: #1a2b1e;
}

.pr-faq-help-btn.primary:hover {
  background: #fff;
  color: #14472F;
  transform: translateY(-2px);
}

.pr-faq-help-btn.outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}

.pr-faq-help-btn.outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.pr-faq-help-btn i {
  font-size: 13px;
}

.pr-faq-help-note {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pr-surface);
  border: 1.5px solid var(--pr-border-light);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--pr-shadow-sm);
}

.pr-faq-help-note i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #FDF4E3;
  color: #F2B233;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.pr-faq-help-note span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pr-faq-help-note strong {
  font: 800 14px/1.2 'Nunito', sans-serif;
  color: var(--pr-text);
}

.pr-faq-help-note small {
  font: 600 12px/1.4 'Nunito', sans-serif;
  color: var(--pr-text-secondary);
}

.pr-faq-list {
  display: flex;
  flex-direction: column;
}

.pr-faq-item {
  background: var(--pr-surface);
  border-radius: var(--pr-radius);
  border: 1.5px solid var(--pr-border-light);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--pr-transition);
}

.pr-faq-item:hover {
  border-color: rgba(91,140,81,.2);
}

.pr-faq-item.active {
  border-color: var(--pr-primary);
  box-shadow: var(--pr-shadow-sm);
}

.pr-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font: 700 15px/1.3 'Nunito', sans-serif;
  color: var(--pr-text);
  transition: var(--pr-transition);
}

.pr-faq-q:hover {
  color: var(--pr-primary);
}

.pr-faq-q i {
  color: var(--pr-primary);
  font-size: 14px;
  transition: transform .3s ease;
  flex-shrink: 0;
}

.pr-faq-item.active .pr-faq-q i {
  transform: rotate(180deg);
}

.pr-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s ease;
}

.pr-faq-item.active .pr-faq-a {
  max-height: 300px;
}

.pr-faq-a-inner {
  padding: 0 24px 20px;
  color: var(--pr-text-secondary);
  font: 600 14px/1.6 'Nunito', sans-serif;
}

/* ═══════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════ */
.pr-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pr-primary-dark) 0%, #1a6b2a 50%, var(--pr-primary-darker) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pr-cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(141,198,63,.1);
  pointer-events: none;
}

.pr-cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(242,178,51,.06);
  pointer-events: none;
}

.pr-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.pr-cta-content h2 {
  margin: 0 0 12px;
  color: #fff;
  font: 900 clamp(28px, 4vw, 40px)/1.15 'Nunito', sans-serif;
}

.pr-cta-content p {
  margin: 0 0 32px;
  color: rgba(255,255,255,.75);
  font: 600 16px/1.6 'Nunito', sans-serif;
}

.pr-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--pr-radius);
  font: 800 15px/1 'Nunito', sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--pr-transition);
}

.pr-cta-btn.primary {
  background: var(--pr-accent);
  color: var(--pr-primary-dark);
  box-shadow: 0 4px 16px rgba(242,178,51,.3);
}

.pr-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(242,178,51,.4);
}

.pr-cta-btn.outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}

.pr-cta-btn.outline:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.pr-trust-bar {
  padding: 40px 0;
  background: var(--pr-surface);
  border-top: 1px solid var(--pr-border-light);
  border-bottom: 1px solid var(--pr-border-light);
}

.pr-trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pr-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pr-text-secondary);
  font: 700 13px/1 'Nunito', sans-serif;
}

.pr-trust-item i {
  color: var(--pr-primary);
  font-size: 20px;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.pr-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.pr-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.pr-fade-up-delay-1 { transition-delay: .1s; }
.pr-fade-up-delay-2 { transition-delay: .2s; }
.pr-fade-up-delay-3 { transition-delay: .3s; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (768px)
   ═══════════════════════════════════════ */
@media (max-width: 991px) {
  .pr-cards-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    gap: 20px;
  }

  .pr-card.featured {
    transform: none;
    order: -1;
  }

  .pr-card.featured:hover {
    transform: translateY(-6px);
  }

  .pr-b2b-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pr-b2b-visual {
    order: -1;
  }

  .pr-steps-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 28px;
  }

  .pr-steps-grid::before {
    display: none;
  }

  .pr-comp-table {
    display: none;
  }

  .pr-comp-mobile {
    display: flex;
    flex-direction: column;
  }

  .pr-hero {
    padding: 60px 0 40px;
  }

  .pr-hero h1 {
    font-size: clamp(28px, 5vw, 40px);
  }

  .pr-hero-desc {
    font-size: 14px;
  }

  .pr-faq-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    gap: 28px;
  }

  .pr-faq-aside {
    position: static;
  }

  .pr-faq-help-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 18px;
    align-items: center;
    padding: 26px;
  }

  .pr-faq-help-ico {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .pr-faq-help-card h3 {
    margin-bottom: 0;
    font-size: 20px;
  }

  .pr-faq-help-card p {
    margin-bottom: 0;
    grid-column: 1 / -1;
  }

  .pr-faq-help-card .pr-faq-help-btn {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .pr-faq-help-card .pr-faq-help-btn + .pr-faq-help-btn {
    margin-top: 10px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (430px, 390px, 375px)
   ═══════════════════════════════════════ */
@media (max-width: 575px) {
  .pr-hero {
    padding: 50px 0 34px;
  }

  .pr-hero h1 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .pr-hero-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .pr-hero-tags {
    gap: 8px;
  }

  .pr-hero-tag {
    padding: 6px 12px;
    font-size: 11px;
  }

  .pr-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .pr-hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 24px;
  }

  .pricing-section-v2 {
    padding: 50px 0 40px;
  }

  .pr-sec-header {
    margin-bottom: 36px;
  }

  .pr-sec-title {
    font-size: clamp(24px, 6vw, 30px);
  }

  .pr-sec-desc {
    font-size: 13px;
  }

  .pr-cards-grid {
    padding: 0 16px;
    gap: 16px;
  }

  .pr-card {
    padding: 28px 20px 24px;
  }

  .pr-card-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin-bottom: 16px;
  }

  .pr-card-plan {
    font-size: 20px;
  }

  .pr-card-price .pr-amount {
    font-size: 34px;
  }

  .pr-comparison-section {
    padding: 50px 0;
  }

  .pr-comp-mobile {
    padding: 0 16px;
    gap: 16px;
  }

  .pr-b2b-section {
    padding: 50px 0;
  }

  .pr-b2b-grid {
    padding: 0 16px;
    gap: 32px;
  }

  .pr-b2b-card {
    padding: 28px 20px;
  }

  .pr-b2b-card-stats {
    gap: 10px;
  }

  .pr-b2b-stat {
    padding: 12px 8px;
  }

  .pr-b2b-stat-num {
    font-size: 22px;
  }

  .pr-b2b-feat-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .pr-b2b-cta {
    flex-direction: column;
  }

  .pr-b2b-cta .pr-hero-btn,
  .pr-b2b-cta .pr-card-btn {
    width: 100%;
    justify-content: center;
  }

  .pr-steps-section {
    padding: 50px 0;
  }

  .pr-steps-grid {
    padding: 0 16px;
    gap: 24px;
  }

  .pr-step-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .pr-step h4 {
    font-size: 15px;
  }

  .pr-step p {
    font-size: 12px;
  }

  .pr-faq-section {
    padding: 50px 0;
  }

  .pr-faq-grid {
    padding: 0 16px;
  }

  .pr-faq-help-card {
    padding: 24px 20px;
  }

  .pr-faq-help-ico {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .pr-faq-help-card h3 {
    font-size: 19px;
  }

  .pr-faq-help-btn {
    padding: 12px 18px;
  }

  .pr-faq-help-note {
    padding: 14px 16px;
  }

  .pr-faq-q {
    padding: 16px 18px;
    font-size: 14px;
  }

  .pr-faq-a-inner {
    padding: 0 18px 16px;
    font-size: 13px;
  }

  .pr-cta-section {
    padding: 50px 0;
  }

  .pr-cta-content h2 {
    font-size: clamp(24px, 6vw, 30px);
  }

  .pr-cta-content p {
    font-size: 13px;
  }

  .pr-cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .pr-cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .pr-trust-items {
    gap: 24px;
  }

  .pr-trust-item {
    font-size: 12px;
  }

  .pr-trust-item i {
    font-size: 16px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — VERY SMALL (375px)
   ═══════════════════════════════════════ */
@media (max-width: 375px) {
  .pr-hero {
    padding: 44px 0 28px;
  }

  .pr-hero-badge {
    padding: 6px 14px;
    font-size: 10px;
  }

  .pr-card {
    padding: 24px 16px 20px;
  }

  .pr-card-features {
    gap: 10px;
  }

  .pr-card-feat {
    font-size: 12px;
  }

  .pr-b2b-card-quote p {
    font-size: 12px;
  }

  .pr-trust-items {
    flex-direction: column;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════
   DESKTOP LARGE (1200px+)
   ═══════════════════════════════════════ */
@media (min-width: 1200px) {
  .pr-cards-grid {
    gap: 32px;
  }

  .pr-card {
    padding: 40px 36px 36px;
  }

  .pr-hero {
    padding: 80px 0 60px;
  }
}
