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

.pricing-page {
  padding: 120px 20px 80px;
  background: #f8f9fc;
}

/* Header */

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.pricing-header p {
  margin-top: 10px;
  color: #666;
  font-size: 1.1rem;
}

/* Free offer banner */

.free-banner {
  background: rgba(240, 75, 24, 0.08);
  border: 1px solid var(--primary-color);
  padding: 15px 25px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Pricing Cards */

.pricing-container {
  max-width: 1100px;
  margin: auto;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Card */

.pricing-card {
  background: white;
  width: 320px;
  border-radius: 12px;
  padding: 35px 30px;
  text-align: center;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;

  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Popular Plan */

.pricing-card.popular {
  border: 2px solid var(--primary-color);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);

  background: var(--primary-color);
  color: white;

  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Plan Title */

.plan-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Price */

.plan-price {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 10px 0;
}

.plan-price span {
  font-size: 0.9rem;
  color: #777;
  font-weight: 400;
}

/* Feature list */

.plan-features {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 30px 0;
}

.plan-features li {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #444;
}

.plan-features strong {
  color: #222;
}

.feature-desc {
  font-size: 0.8rem;
  color: #777;
  margin-left: 22px;
  margin-top: 3px;
}

/* Tick icon */

.tick {
  color: #2ecc71;
  margin-right: 8px;
  font-weight: bold;
}

/* Button */

.plan-button {
  margin-top: 20px;
  padding: 10px 22px;

  border-radius: 8px;
  border: 2px solid var(--primary-color);

  background: transparent;
  color: var(--primary-color);

  font-weight: 600;
  cursor: pointer;

  transition: all 0.25s ease;
}

.plan-button:hover {
  background: var(--primary-color);
  color: white;
}

/* Enterprise style */

.enterprise .plan-price {
  font-size: 2rem;
}

/* =====================================
   FEATURE COMPARISON SECTION
===================================== */

.feature-compare {
  margin-top: 100px;
  text-align: center;
}

.feature-compare h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.compare-table th {
  background: #f5f6fb;
  font-weight: 600;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
}

/* =====================================
   OFFER SECTION
===================================== */

.pricing-offer {
  margin-top: 80px;
  text-align: center;
  background: white;

  padding: 50px 30px;
  border-radius: 12px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.pricing-offer h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.pricing-offer p {
  color: #666;
}

.pricing-offer strong {
  color: var(--primary-color);
}

/* =====================================
   CTA SECTION
===================================== */

.pricing-cta {
  margin-top: 80px;
  text-align: center;
}

.pricing-cta h2 {
  font-size: 2rem;
}

.pricing-cta p {
  margin-top: 10px;
  color: #666;
}

.pricing-cta .cta-button {
  margin-top: 25px;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 768px) {
  .pricing-header h1 {
    font-size: 2rem;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 350px;
  }
}
