/* =============================================================
   PRICING PAGE CSS — ULTRA-CLEAN & MODERN 2026
   ============================================================= */

/* Value Included Strip */
.price-included-strip {
  background: var(--navy);
  color: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pi-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.pi-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.pi-icon i {
  color: var(--green);
  font-size: 16px;
}

/* Pricing Grid */
.pricing-section {
  padding: 96px 0;
  background: var(--bg-main);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--sh-sm);
  transition: all var(--t-base);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--border-hover);
}

.pricing-card.popular {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--sh-xl);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--green-glow);
}

.pc-header h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.pricing-card.popular .pc-header h3 {
  color: var(--white);
}

.pc-header p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 24px;
}

.pricing-card.popular .pc-header p {
  color: rgba(255, 255, 255, 0.65);
}

.pc-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pricing-card.popular .pc-price-wrap {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pc-currency {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.pricing-card.popular .pc-currency {
  color: var(--green);
}

.pc-price {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.pricing-card.popular .pc-price {
  color: var(--white);
}

.pc-term {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card.popular .pc-term {
  color: rgba(255, 255, 255, 0.5);
}

.pc-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
  margin-top: auto;
}

.pc-features li {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.5;
  position: relative;
  padding-left: 24px;
}

.pricing-card.popular .pc-features li {
  color: rgba(255, 255, 255, 0.85);
}

.pc-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.pricing-card.popular .pc-features li::before {
  color: var(--green);
}

.pc-action {
  margin-top: auto;
}

.full-width {
  width: 100%;
  text-align: center;
}

/* Custom Pricing Box */
.custom-pricing-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px 44px;
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--sh-sm);
}

.custom-pricing-box h4 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.custom-pricing-box p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1140px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-6px); }
}

@media (max-width: 680px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pi-grid { flex-direction: column; align-items: flex-start; }
  .custom-pricing-box { flex-direction: column; align-items: flex-start; padding: 28px; }
}