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

.pricing-hero {
  padding: 140px var(--gutter) 60px;
  text-align: center;
  position: relative;
}

.pricing-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-hero .hero-title {
  font-size: clamp(48px, 7vw, 84px);
  margin: 24px 0 0;
  animation: none;
}

.pricing-hero .hero-title span {
  display: inline;
  animation: fadeUp 0.8s var(--ease) both;
}
.pricing-hero .hero-title span:nth-child(2) {
  animation-delay: 0.2s;
}

.full-plans {
  padding: 40px var(--gutter) 80px;
  max-width: var(--container);
  margin: 0 auto;
}

.full-plans-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.full-plan {
  position: relative;
  background: var(--pure-white);
  border: 1px solid var(--gray-150);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.full-plan:hover {
  border-color: var(--pure-black);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.10);
}

.full-plan.featured {
  background: var(--pure-black);
  color: var(--pure-white);
  border-color: var(--pure-black);
  transform: scale(1.02);
}

.full-plan.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pure-white);
  color: var(--pure-black);
  padding: 5px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid var(--pure-black);
  white-space: nowrap;
}

.full-plan-head {
  margin-bottom: 24px;
}

.full-plan-head h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.full-plan-tagline {
  font-size: 13px;
  color: var(--gray-500);
}

.full-plan.featured .full-plan-tagline {
  color: var(--gray-400);
}

.full-plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.full-plan .price-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.full-plan .price-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-500);
}

.full-plan.featured .price-currency {
  color: var(--gray-400);
}

.price-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-150);
}

.full-plan.featured .price-note {
  color: var(--gray-400);
  border-bottom-color: var(--gray-800);
}

.full-plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}

.full-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13.5px;
}

.full-plan-features li.muted {
  color: var(--gray-400);
}

.full-plan.featured .full-plan-features li.muted {
  color: var(--gray-600);
}

.full-plan-features i {
  font-size: 14px;
  color: var(--pure-black);
  flex-shrink: 0;
}

.full-plan.featured .full-plan-features i {
  color: var(--pure-white);
}

.full-plan-features li.muted i {
  color: var(--gray-300);
}

.full-plan.featured .full-plan-features li.muted i {
  color: var(--gray-700);
}

.full-plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--pure-white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pure-black);
  transition: all 0.3s ease;
}

.full-plan-btn:hover {
  background: var(--pure-black);
  border-color: var(--pure-black);
  color: var(--pure-white);
}

.full-plan-btn.primary {
  background: var(--pure-white);
  color: var(--pure-black);
  border-color: var(--pure-white);
}

.full-plan-btn.primary:hover {
  background: transparent;
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.full-plan-btn i {
  transition: transform 0.3s var(--ease-bounce);
}

.full-plan-btn:hover i {
  transform: translateX(4px);
}

.full-plans-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 40px;
  font-size: 13px;
  color: var(--gray-600);
  text-align: center;
}

.full-plans-foot i {
  color: var(--pure-black);
  font-size: 16px;
}

/* ============ COMPARE TABLE ============ */
.compare-table-section {
  padding: 80px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-150);
  border-radius: 16px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--pure-white);
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-150);
  font-size: 13.5px;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--gray-700);
}

.compare-table th {
  background: var(--gray-50);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table .featured-col {
  background: var(--gray-50);
  position: relative;
}

.compare-table tbody tr:hover {
  background: var(--gray-50);
}

.compare-table tbody tr:hover .featured-col {
  background: var(--gray-100);
}

.compare-table .good {
  color: var(--pure-black);
  font-size: 18px;
}

.compare-table .bad {
  color: var(--gray-300);
  font-size: 18px;
}

/* RTL Table */
html.ar .compare-table th:first-child,
html.ar .compare-table td:first-child {
  text-align: right;
}

/* ============ MOBILE PRICING ============ */
@media (max-width: 768px) {
  .pricing-hero {
    padding: 100px var(--gutter) 30px;
  }

  .pricing-hero .hero-title {
    font-size: 42px;
  }

  .full-plans {
    padding: 24px var(--gutter) 60px;
  }

  .full-plans-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .full-plan {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .full-plan.featured {
    transform: none;
  }
  .full-plan.featured:hover {
    transform: translateY(-6px);
  }

  .featured-badge {
    font-size: 9px;
    padding: 4px 10px;
  }

  .full-plan-head h3 {
    font-size: 20px;
  }

  .full-plan-tagline {
    font-size: 12px;
  }

  .full-plan .price-num {
    font-size: 44px;
  }

  .full-plan .price-currency {
    font-size: 14px;
  }

  .price-note {
    font-size: 10px;
    margin-bottom: 22px;
    padding-bottom: 22px;
  }

  .full-plan-features li {
    padding: 7px 0;
    font-size: 12.5px;
  }

  .full-plan-btn {
    padding: 12px;
    font-size: 12px;
  }

  .full-plans-foot {
    font-size: 12px;
    padding: 28px 16px 0;
    line-height: 1.5;
  }

  .compare-table-section {
    padding: 50px var(--gutter);
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
    font-size: 11.5px;
  }
}