/* ============================================
   pricing.css — SkipTV Pricing Page
   ============================================ */

/* ---- Pricing Hero ---- */
.pricing-hero {
  padding: 140px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 174, 239, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 107, 0, 0.07) 0%, transparent 50%),
    var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  opacity: 0.6;
}

.pricing-hero h1 {
  margin-bottom: 16px;
}

.pricing-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ---- Period Toggle ---- */
.period-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.period-toggle span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}

.period-toggle span.active {
  color: var(--text-primary);
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-switch.on {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch.on .toggle-knob {
  transform: translateX(24px);
}

.savings-badge {
  background: rgba(0, 200, 100, 0.12);
  color: #00C864;
  border: 1px solid rgba(0, 200, 100, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---- Pricing Section ---- */
.pricing-section {
  position: relative;
}

/* ---- Featured badge wrapper ---- */
.featured-badge-wrapper {
  text-align: center;
  margin-bottom: 12px;
  min-height: 28px;
}

/* ---- Savings note ---- */
.savings-note {
  font-size: 13px;
  color: var(--accent-orange);
  font-weight: 600;
  margin-top: 8px;
  display: block;
}

/* ---- Pricing card price box ---- */
.price-box {
  margin-bottom: 8px;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-blue);
  vertical-align: top;
  line-height: 1.2;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
}

.price-decimal {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-blue);
  vertical-align: top;
  line-height: 1.2;
}

/* ---- Trial note ---- */
.trial-note {
  font-size: 12px;
  color: var(--accent-orange);
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(255, 107, 0, 0.08);
  border-radius: var(--radius-sm);
}

/* ==========================================
   TRUST BADGES
   ========================================== */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.trust-badge:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-blue);
}

.trust-badge .icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.trust-badge h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.trust-badge p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   COMPARISON TABLE
   ========================================== */

.comparison-section {
  margin-top: 80px;
}

.comparison-table th:not(:first-child) {
  text-align: center;
  width: 180px;
}

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

.comparison-table .feature-name {
  color: var(--text-secondary);
  font-size: 15px;
}

.comparison-table .check-yes {
  color: #00C864;
  font-size: 18px;
}

.comparison-table .check-no {
  color: var(--text-muted);
  font-size: 18px;
}

.comparison-table .featured-col {
  background: rgba(0, 174, 239, 0.04);
}

.comparison-table th.featured-col {
  color: var(--accent-blue);
}

/* ==========================================
   FAQ SECTION ON PRICING PAGE
   ========================================== */

.pricing-faq {
  max-width: 760px;
  margin: 0 auto;
}

/* ==========================================
   MONEY-BACK GUARANTEE BOX
   ========================================== */

.money-back {
  background: rgba(0, 200, 100, 0.05);
  border: 1px solid rgba(0, 200, 100, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 60px auto 0;
}

.money-back .icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.money-back h3 {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.money-back p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================
   UPSELL / POPULAR SECTION
   ========================================== */

.popular-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 48px;
}

.popular-note::before,
.popular-note::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.4));
}

.popular-note::after {
  background: linear-gradient(90deg, rgba(255, 107, 0, 0.4), transparent);
}
