/* ==========================================================================
   pricing-pro.css  —  ChaqmoqApp Professional Pricing Page
   3 ta tarif kartasi: Standart / Premium / Pro
   ========================================================================== */

/* ── Section wrapper ─────────────────────────────────── */
.pricingpro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

/* ── Header ──────────────────────────────────────────── */
.pricingpro__header {
  text-align: center;
  margin-bottom: 60px;
}

.pricingpro__eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pricingpro__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 16px;
}

body.dark-mode .pricingpro__title,
[data-theme="dark"] .pricingpro__title {
  color: #f1f5f9;
}

.pricingpro__subtitle {
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Grid ────────────────────────────────────────────── */
.pricingpro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 960px) {
  .pricingpro__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ── Card base ───────────────────────────────────────── */
.pricingpro__card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 28px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricingpro__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.10);
}

body.dark-mode .pricingpro__card,
[data-theme="dark"] .pricingpro__card {
  background: #1e293b;
  border-color: #334155;
}

/* ── Featured card (Premium) ─────────────────────────── */
.pricingpro__card--featured {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15),
              0 16px 40px rgba(245, 158, 11, 0.12);
}

.pricingpro__card--featured:hover {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.22),
              0 24px 56px rgba(245, 158, 11, 0.18);
}

/* Pro card special glow */
.pricingpro__card--pro {
  border-color: #a855f7;
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.12),
              0 12px 32px rgba(168, 85, 247, 0.08);
}

.pricingpro__card--pro:hover {
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2),
              0 20px 48px rgba(168, 85, 247, 0.14);
}

/* ── Badge ───────────────────────────────────────────── */
.pricingpro__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 20px;
}

.pricingpro__card--standart .pricingpro__badge {
  background: #0f172a;
  color: #94a3b8;
  border: 1px solid #334155;
}

.pricingpro__card--premium .pricingpro__badge {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1a1a1a;
}

.pricingpro__card--pro .pricingpro__badge {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #e2e8f0;
  border: 1px solid #334155;
}

/* ── Card top (icon + name) ──────────────────────────── */
.pricingpro__card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  margin-top: 10px;
}

.pricingpro__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pricingpro__icon--blue {
  background: rgba(79, 142, 247, 0.12);
  border: 1.5px solid rgba(79, 142, 247, 0.35);
}

.pricingpro__icon--gold {
  background: rgba(245, 158, 11, 0.12);
  border: 1.5px solid rgba(245, 158, 11, 0.4);
}

.pricingpro__icon--purple {
  background: rgba(168, 85, 247, 0.12);
  border: 1.5px solid rgba(168, 85, 247, 0.35);
}

.pricingpro__name-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricingpro__name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1;
}

body.dark-mode .pricingpro__name,
[data-theme="dark"] .pricingpro__name {
  color: #f1f5f9;
}

.pricingpro__range {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94a3b8;
  text-transform: uppercase;
}

/* ── Price block ─────────────────────────────────────── */
.pricingpro__price-block {
  margin-bottom: 24px;
}

.pricingpro__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricingpro__price strong {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0f172a;
  line-height: 1;
}

body.dark-mode .pricingpro__price strong,
[data-theme="dark"] .pricingpro__price strong {
  color: #f1f5f9;
}

.pricingpro__card--premium .pricingpro__price strong {
  color: #d97706;
}

body.dark-mode .pricingpro__card--premium .pricingpro__price strong {
  color: #fbbf24;
}

.pricingpro__unit {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #94a3b8;
  text-transform: uppercase;
}

.pricingpro__original {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-top: 4px;
}

/* ── Features list ───────────────────────────────────── */
.pricingpro__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.pricingpro__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #334155;
}

body.dark-mode .pricingpro__feat,
[data-theme="dark"] .pricingpro__feat {
  color: #cbd5e1;
}

.pricingpro__feat-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

.pricingpro__feat-icon--on {
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

.pricingpro__feat-icon--gold {
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
}

.pricingpro__feat-icon--purple {
  background: rgba(168, 85, 247, 0.15);
  color: #9333ea;
}

.pricingpro__feat-icon--off {
  background: rgba(148, 163, 184, 0.12);
  color: #94a3b8;
}

.pricingpro__feat--off {
  opacity: 0.45;
  text-decoration: line-through;
  text-decoration-color: #cbd5e1;
}

/* ── CTA button ──────────────────────────────────────── */
.pricingpro__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  margin-top: auto;
}

/* Standart */
.pricingpro__card--standart .pricingpro__cta {
  background: transparent;
  border-color: #cbd5e1;
  color: #475569;
}

.pricingpro__card--standart .pricingpro__cta:hover {
  border-color: #4f8ef7;
  color: #4f8ef7;
  background: rgba(79, 142, 247, 0.05);
}

/* Premium — filled dark */
.pricingpro__card--premium .pricingpro__cta {
  background: #0f172a;
  color: #f1f5f9;
  border-color: #0f172a;
}

.pricingpro__card--premium .pricingpro__cta:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

/* Pro */
.pricingpro__card--pro .pricingpro__cta {
  background: transparent;
  border-color: #a855f7;
  color: #a855f7;
}

.pricingpro__card--pro .pricingpro__cta:hover {
  background: rgba(168, 85, 247, 0.08);
  transform: translateY(-1px);
}

.pricingpro__arrow {
  transition: transform 0.2s;
}

.pricingpro__cta:hover .pricingpro__arrow {
  transform: translateX(4px);
}

/* ── Footer info strip ───────────────────────────────── */
.pricingpro__footer-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding: 32px 36px;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

body.dark-mode .pricingpro__footer-strip,
[data-theme="dark"] .pricingpro__footer-strip {
  background: #1e293b;
  border-color: #334155;
}

@media (max-width: 800px) {
  .pricingpro__footer-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pricingpro__footer-strip {
    grid-template-columns: 1fr;
  }
}

.pricingpro__footer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricingpro__footer-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricingpro__footer-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

body.dark-mode .pricingpro__footer-item strong,
[data-theme="dark"] .pricingpro__footer-item strong {
  color: #f1f5f9;
}

.pricingpro__footer-item p {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

/* ── Empty state ─────────────────────────────────────── */
.pricingpro__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  color: #94a3b8;
  font-size: 1rem;
}
