/* ===== 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: 28%;
  background: #073380 !important;
  font-size: 1rem;
}
.pricing-th-web {
  background: #389e0d !important;
  width: 24%;
}
.pricing-th-app {
  background: #cf1322 !important;
  width: 24%;
}
.pricing-th-pos {
  background: #1677ff !important;
  width: 24%;
}

/* 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;
}

/* Check & Cross */
.pricing-table td.pricing-yes {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.1rem;
}
.pricing-table td.pricing-no {
  color: #ef4444;
  font-size: 0.95rem;
}

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

/* Notes section */
.pricing-notes {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 16px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
}
.pricing-notes-title {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.pricing-notes-item {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 4px;
  line-height: 1.6;
}

/* 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; }
}
