/* ===== REVENTORS-STYLE PRICING ===== */
.rp-pricing-section {
  padding: 100px 24px 60px;
  background: #fafbfc;
  min-height: 100vh;
}
.rp-container { max-width: 1100px; margin: 0 auto; }

/* Channel Tabs */
.rp-channel-tabs {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 32px;
}
.rp-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 9999px;
  border: 1px solid #e0e0e0; background: #fff;
  font-size: 0.95rem; font-weight: 600; color: #555;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  user-select: none;
}
.rp-tab.active {
  background: #e8f5e9; border-color: #4caf50; color: #2e7d32;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
  transform: scale(1.05);
}
.rp-tab:hover:not(.active) { border-color: #4caf50; color: #4caf50; transform: translateY(-2px); background: #f9f9f9; }
.rp-tab:active { transform: scale(0.98); }

/* Header */
.rp-header { text-align: center; margin-bottom: 28px; }
.rp-header h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 8px;
}
.rp-crown { 
  display: inline-flex; align-items: center; justify-content: center;
  color: #ffc107; vertical-align: middle; margin-left: 8px;
  filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}
.rp-crown [data-lucide], .rp-ai-badge [data-lucide="crown"] { 
  width: 32px; height: 32px; stroke-width: 2.5; 
  animation: crownShine 4s infinite ease-in-out;
}
.rp-ai-badge [data-lucide="crown"] { width: 18px; height: 18px; margin-right: 4px; }

@keyframes crownShine {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.4)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
}
.rp-header p { color: #666; font-size: 1rem; }

/* Billing Toggle */
.rp-billing-toggle {
  display: flex; justify-content: center; gap: 0;
  background: #f0f0f0; border-radius: 9999px;
  padding: 4px; width: fit-content; margin: 0 auto 40px;
}
.rp-period {
  padding: 12px 28px; border-radius: 9999px; border: none;
  background: transparent; font-size: 0.9rem; font-weight: 700;
  color: #777; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative;
}
.rp-period.active { 
  background: #fff; color: #1a1a2e; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
  transform: scale(1.02);
}
.rp-period:hover:not(.active) { color: #1a1a2e; transform: translateY(-1px); }
.rp-save {
  font-size: 0.65rem; color: #e07800; font-weight: 700;
  display: block; line-height: 1;
}

/* Plan Cards Grid */
.rp-plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 60px;
}

/* Plan Card */
.rp-plan-card {
  background: #fff; border: 1px solid #e8e8e8;
  border-radius: 16px; padding: 32px 28px;
  position: relative; transition: all 0.3s;
}
.rp-plan-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }

.rp-popular { border: 2px solid #4caf50; }
.rp-popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #4caf50; color: #fff; padding: 4px 18px;
  border-radius: 9999px; font-size: 0.7rem; font-weight: 800; letter-spacing: 1px;
}

.rp-plan-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: #1a1a2e; margin-bottom: 6px;
}
.rp-plan-desc { color: #888; font-size: 0.85rem; margin-bottom: 20px; line-height: 1.5; }

.rp-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.rp-currency { font-size: 1.5rem; font-weight: 700; color: #1a1a2e; }
.rp-amount {
  font-size: 2.8rem; font-weight: 800; color: #1a1a2e;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.3s;
}
.rp-per { font-size: 0.9rem; color: #888; font-weight: 400; }
.rp-billed { font-size: 0.78rem; color: #aaa; margin-bottom: 20px; }

/* Select Plan Button */
.rp-btn-select {
  display: block; width: 100%; text-align: center; padding: 16px;
  border: 2px solid #e0e0e0; border-radius: 12px; font-weight: 700;
  font-size: 1rem; color: #1a1a2e; background: #fff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  margin-bottom: 12px;
}
.rp-btn-select:hover { 
  border-color: #4caf50; color: #4caf50; 
  transform: translateY(-3px); 
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
}
.rp-btn-select:active { transform: scale(0.97); }

.rp-btn-popular {
  background: #1a1a2e; color: #fff; border-color: #1a1a2e;
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.2);
}
.rp-btn-popular:hover { 
  background: #2a2a4e; border-color: #2a2a4e;
  box-shadow: 0 8px 25px rgba(26, 26, 46, 0.3);
}

.rp-coupon {
  display: block; text-align: center; font-size: 0.85rem;
  color: #4caf50; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 24px; transition: all 0.2s;
}
.rp-coupon:hover { filter: brightness(1.2); transform: scale(1.05); }

/* Features */
.rp-feat-title {
  font-size: 0.75rem; font-weight: 700; color: #999;
  letter-spacing: 1px; margin-bottom: 12px; padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.rp-features { list-style: none; padding: 0; margin: 0 0 20px; }
.rp-features li {
  padding: 6px 0; font-size: 0.82rem; color: #555;
  border-bottom: 1px solid #f5f5f5;
  display: flex; align-items: center; gap: 8px;
}
.rp-features li::before {
  content: '✓'; color: #4caf50; font-weight: 700; font-size: 0.75rem;
  flex-shrink: 0;
}

/* Exclusive Offer */
.rp-exclusive {
  background: #fffde7; border: 1px solid #fff9c4;
  border-radius: 12px; padding: 16px; margin-top: 16px;
}
.rp-exclusive h4 {
  font-size: 0.8rem; font-weight: 700; color: #1a1a2e;
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.rp-exclusive [data-lucide] { width: 14px; height: 14px; color: #ffc107; }
.rp-offer-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0; font-size: 0.82rem; color: #555;
}
.rp-badge-access {
  background: #c6ff00; color: #1a1a2e; padding: 2px 10px;
  border-radius: 4px; font-size: 0.65rem; font-weight: 800;
}

/* AI Credits Section */
.rp-ai-section { text-align: center; margin-bottom: 60px; }
.rp-ai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #1a1a2e; color: #ffc107; padding: 8px 20px;
  border-radius: 9999px; font-size: 0.8rem; font-weight: 700;
  margin-bottom: 16px;
}
.rp-ai-badge [data-lucide] { width: 14px; height: 14px; }
.rp-ai-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem; font-weight: 800; margin-bottom: 8px;
}
.rp-ai-section > p { color: #666; font-size: 0.9rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

.rp-ai-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.rp-ai-card {
  background: #fff; border: 1px solid #e8e8e8;
  border-radius: 14px; padding: 24px 20px;
  text-align: left; position: relative; transition: all 0.3s;
}
.rp-ai-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.rp-ai-popular { border: 2px solid #4caf50; }
.rp-ai-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.rp-ai-desc { font-size: 0.78rem; color: #888; margin-bottom: 16px; line-height: 1.5; }
.rp-ai-price {
  font-size: 2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 4px;
}
.rp-ai-price span { font-size: 0.85rem; color: #999; font-weight: 400; }
.rp-ai-credits { 
  font-size: 0.78rem; color: #4caf50; font-weight: 600; margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}
.rp-ai-credits [data-lucide] { width: 16px; height: 16px; stroke-width: 2.5; }
.rp-btn-credits {
  display: block; width: 100%; text-align: center; padding: 14px;
  border: 1px solid #ddd; border-radius: 12px; font-weight: 700;
  font-size: 0.95rem; color: #1a1a2e; background: #fff; 
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.rp-btn-credits:hover { 
  border-color: #4caf50; color: #4caf50; 
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.rp-btn-credits:active { transform: scale(0.96); }

/* Powered By */
.rp-powered { margin-top: 24px; }
.rp-powered p { font-size: 0.7rem; color: #999; letter-spacing: 2px; font-weight: 600; margin-bottom: 12px; }
.rp-logos { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.rp-logos span { font-size: 1rem; font-weight: 700; color: #444; }

/* Savings Badge */
.rp-savings {
  display: flex; align-items: center; gap: 6px;
  background: #e8f5e9; border-radius: 8px; padding: 8px 12px;
  margin-bottom: 16px;
}
.rp-savings [data-lucide] { width: 16px; height: 16px; color: #4caf50; flex-shrink: 0; }
.rp-savings-text { font-size: 0.78rem; color: #2e7d32; font-weight: 600; }

/* Show More */
.rp-show-more {
  display: block; text-align: center; padding: 12px 0 4px;
  font-size: 0.82rem; color: #FF8C00; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.rp-show-more:hover { color: #e07800; }

/* Premium Card (Yellow border) */
.rp-premium { border: 2px solid #ffc107; }
.rp-premium .rp-exclusive { background: #fffde7; border-color: #ffc107; }

/* Dot List (expanded items) */
.rp-dot-list li::before { content: '•'; color: #1a1a2e; font-weight: 900; font-size: 1rem; }
.rp-more-content { margin-top: 12px; }

/* Responsive */
@media (max-width: 900px) {
  .rp-plans-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .rp-ai-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rp-billing-toggle { flex-wrap: wrap; border-radius: 12px; }
  .rp-ai-grid { grid-template-columns: 1fr; }
  .rp-channel-tabs { flex-wrap: wrap; }
}
