/* ===== BẢNG GIÁ PAGE ===== */

.pricing-section {
  padding: 80px 0 50px;
  background: #fff;
}

/* Title */
.pricing-title {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-title-text {
  display: inline-block;
  position: relative;
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  color: #FFF700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 60px;
  z-index: 1;
}
.pricing-title-text::before {
  content: '';
  position: absolute;
  left: -40px; right: -40px;
  top: 50%; transform: translateY(-50%);
  height: 90px;
  background: url('../images/brush-stroke.png') center top / 100% auto no-repeat;
  z-index: -1;
}

/* Table */
.pricing-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

/* Header */
.pricing-table thead tr {
  background: #073380;
}
.pricing-table th {
  padding: 16px 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  vertical-align: middle;
}
.pricing-th-name {
  text-align: center !important;
  width: 22%;
  background: #073380 !important;
  font-size: 1rem;
}
.pricing-th-web {
  background: #2196F3 !important;
  width: 18%;
}
.pricing-th-app {
  background: #4CAF50 !important;
  width: 18%;
}
.pricing-th-pos {
  background: #FF0909 !important;
  width: 18%;
}
.pricing-th-server {
  background: #FF9800 !important;
  width: 24%;
  font-size: 0.8rem;
}
.pricing-th-server small {
  font-weight: 400;
  font-size: 0.7rem;
  display: block;
  margin-top: 4px;
  opacity: 0.9;
}

/* Body */
.pricing-table tbody tr {
  border-bottom: 1px solid #e8ecf0;
  transition: background 0.2s;
}
.pricing-table tbody tr:nth-child(even) {
  background: #f8f9fb;
}
.pricing-table tbody tr:hover {
  background: #eef3fa;
}
.pricing-table td {
  padding: 14px 16px;
  text-align: center;
  color: #333;
  border-right: 1px solid #e8ecf0;
  vertical-align: middle;
}
.pricing-table td:first-child {
  text-align: left;
  font-weight: 500;
}
.pricing-table td:last-child {
  border-right: none;
}

/* Description & Note */
.pricing-desc {
  font-size: 0.8rem;
  font-weight: 400;
  color: #666;
}
.pricing-note {
  font-size: 0.8rem;
  font-weight: 600;
  color: #FF0909;
}

/* Link */
.pricing-link {
  color: #2196F3;
  font-weight: 700;
  font-style: italic;
  text-decoration: none;
}
.pricing-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-section { padding: 70px 8px 30px; }
  .pricing-title-text { font-size: 1.2rem; padding: 12px 24px; }
  .pricing-table { font-size: 0.72rem; }
  .pricing-table th { font-size: 0.68rem; padding: 8px 6px; }
  .pricing-table td { padding: 8px 6px; }
}
