/* ===== PRICING PAGE STYLES ===== */

/* CURRENCY TOGGLE */
.currency-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 20px;
}
.currency-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  transition: color 0.2s;
  cursor: default;
}
.currency-label.active { color: #E05A1A; }
.currency-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}
.currency-switch input { opacity: 0; width: 0; height: 0; }
.currency-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.25s;
}
.currency-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 2px;
  background: #E05A1A;
  border-radius: 50%;
  transition: transform 0.25s;
}
.currency-switch input:checked + .currency-slider { background: rgba(224,90,26,0.15); }
.currency-switch input:checked + .currency-slider::before { transform: translateX(20px); }

/* HERO */
.pricing-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 0;
  position: relative;
  overflow: hidden;
}
.pricing-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* TAB SWITCHER */
.tab-switcher {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 5px;
  gap: 4px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.tab-btn {
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(224,90,26,0.3);
}

/* TAB PANELS */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* PRICING SECTION */
.pricing-section {
  padding: 80px 0;
}
.pricing-section--alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-section-header .section-sub {
  margin: 0 auto;
}

/* PRICING GRIDS */
.pricing-grid {
  display: grid;
  gap: 20px;
}
.pricing-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.pricing-grid--2-center {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}
.pricing-grid--1-wide {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

/* PRICE CARD */
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.price-card--featured {
  background: rgba(224,90,26,0.06);
  border-color: rgba(224,90,26,0.3);
}
.price-card--featured:hover {
  border-color: rgba(224,90,26,0.5);
}
.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card-top {
  margin-bottom: 24px;
}
.price-tag-sm {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.price-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.price-amount {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.price-amount span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}
.price-amount--lg {
  font-size: 52px;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FEATURES LIST */
.price-features {
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.price-features li:last-child { border-bottom: none; }

.price-features--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.price-features--inline li {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.price-features--inline li::before { display: none; }

/* WIDE CARD */
.price-card--wide {
  flex-direction: row;
  gap: 48px;
  align-items: center;
  padding: 44px 48px;
}
.price-card--wide .price-features {
  margin-bottom: 0;
}
.price-card-wide-left {
  flex: 1;
}
.price-card-wide-left h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.price-card-wide-left p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.price-card-wide-right {
  flex-shrink: 0;
  text-align: center;
  min-width: 200px;
}

.price-card--hero { border-color: rgba(224,90,26,0.4); }
.price-card--jashn { border-color: rgba(224,90,26,0.3); }

/* ADD-ONS TABLE */
.addons-table {
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}
.addons-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(224,90,26,0.05);
}
.addons-header h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
}
.addon-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.2fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.addon-row:last-child { border-bottom: none; }
.addon-row:hover { background: rgba(224,90,26,0.03); }
.addon-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.addon-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.addon-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.addon-price em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.addon-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(224,90,26,0.08);
  border: 1px solid rgba(224,90,26,0.2);
  padding: 6px 16px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}
.addon-cta:hover {
  background: rgba(224,90,26,0.15);
  border-color: rgba(224,90,26,0.4);
}

/* CTA STRIP */
.cta-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.cta-strip p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .pricing-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .price-card--wide {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .price-card-wide-right { min-width: unset; width: 100%; }
  .price-features--inline { justify-content: center; }
  .addon-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .addon-desc { display: none; }
}

@media (max-width: 640px) {
  .pricing-grid--4,
  .pricing-grid--3,
  .pricing-grid--2-center { grid-template-columns: 1fr; }
  .tab-btn { padding: 10px 16px; font-size: 13px; }
  .pricing-section { padding: 56px 0; }
  .price-card--wide { padding: 28px 24px; }
  .addon-row { grid-template-columns: 1fr auto; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
}
