/* ═══════════════════════════════════════════
   RIVEL Pricing — Premium dark design
   ═══════════════════════════════════════════ */

.rv-pricing-section {
  background: #000;
  padding: 6rem 1.5rem 4rem;
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  color: #fff;
}

.rv-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── HEADER ─── */
.rv-pricing-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.rv-pricing-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0.5rem 0;
}

.rv-pricing-subtitle {
  font-size: 1.125rem;
  color: #969696;
  font-weight: 300;
  max-width: 500px;
}

/* ─── TOGGLE ─── */
.rv-toggle-wrap {
  display: inline-flex;
  background: #111;
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  margin-top: 1rem;
}

.rv-toggle-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: #666;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rv-toggle-btn.active {
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.rv-save-badge {
  background: rgba(28, 82, 255, 0.15);
  color: #5b8aff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}

/* ─── PRICING GRID ─── */
.rv-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: #1a1a1a;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 4rem;
}

/* ─── PRICE CARD ─── */
.rv-price-card {
  background: #0a0a0a;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.rv-price-card-featured {
  background: #0f0f0f;
  box-shadow: inset 0 1px 0 rgba(28, 82, 255, 0.4);
}

.rv-popular-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #1c52ff;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 100px;
}

.rv-price-card-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rv-tier-name {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
}

.rv-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.rv-price-amount {
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.rv-price-period {
  font-size: 0.9rem;
  color: #555;
  font-weight: 400;
}

.rv-tier-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  font-weight: 300;
}

/* ─── CTA BUTTONS ─── */
.rv-price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.rv-price-cta-primary {
  background: #1c52ff;
  color: #fff;
}
.rv-price-cta-primary:hover {
  background: #2a5fff;
  box-shadow: 0 4px 20px rgba(28, 82, 255, 0.3);
}

.rv-price-cta-secondary {
  background: #151515;
  color: #999;
  border: 1px solid #222;
}
.rv-price-cta-secondary:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #333;
}

/* ─── FEATURE LIST ─── */
.rv-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.rv-feature-list li {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.4;
}

.rv-feature-divider {
  font-size: 0.75rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555 !important;
  padding-top: 0.5rem;
  border-top: 1px solid #1a1a1a;
}

.rv-check {
  color: #1c52ff;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── ADD-ONS ─── */
.rv-addons-section {
  margin-bottom: 4rem;
}

.rv-addons-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}

.rv-addons-subtitle {
  font-size: 0.95rem;
  color: #666;
  font-weight: 300;
  margin-bottom: 2rem;
}

.rv-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
}

.rv-addon-card {
  background: #0a0a0a;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}
.rv-addon-card:hover {
  background: #0f0f0f;
}

.rv-addon-price {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
}
.rv-addon-price span {
  font-size: 0.8rem;
  color: #555;
}

.rv-addon-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ccc;
}

.rv-addon-desc {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.4;
}

/* ─── STRATEGY LAB BANNER ─── */
.rv-sl-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  border: 1px solid #1a1a1a;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  gap: 2rem;
}

.rv-sl-banner-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rv-sl-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(28, 82, 255, 0.1);
  color: #5b8aff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}

.rv-sl-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.rv-sl-desc {
  font-size: 0.9rem;
  color: #666;
  font-weight: 300;
  margin: 0;
}

/* ═══ RESPONSIVE ═══ */

@media screen and (max-width: 991px) {
  .rv-pricing-grid {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .rv-popular-tag {
    position: static;
    transform: none;
    width: fit-content;
    margin-bottom: -0.5rem;
  }
  .rv-sl-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .rv-pricing-section {
    padding: 4rem 1rem 3rem;
  }
  .rv-pricing-title {
    font-size: 1.75rem;
  }
  .rv-addons-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rv-sl-banner {
    padding: 1.5rem;
    border-radius: 16px;
  }
}

@media screen and (max-width: 479px) {
  .rv-addons-grid {
    grid-template-columns: 1fr;
  }
  .rv-toggle-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
