 .costs-title{
     font-size: 2.25rem;
     font-weight: 800;
     letter-spacing: -0.02em;
     color:#111;
}
 .costs-subtitle{
     color:#7a7a7a;
     font-size: .98rem;
     line-height: 1.6;
}
 .paystrip{
     background:#fff;
     border:1px solid #e9e9e9;
     border-radius: .75rem;
     padding: 1.15rem 1.25rem;
}
 .paystrip-inner{
     display:flex;
     align-items:center;
     gap: 1.25rem;
}
 .paystrip-label{
     min-width: 220px;
     font-weight: 700;
     color:#222;
     line-height: 1.2;
     font-size: .95rem;
}
 .paystrip-items{
     display:flex;
     align-items:center;
     justify-content:space-between;
     gap: 1.25rem;
     width:100%;
}
 .paystrip-item{
     display:flex;
     flex-direction:column;
     align-items:center;
     text-align:center;
     gap: .5rem;
     min-width: 120px;
}
 .paystrip-icon{
     color: var(--brand-red, #E0312D);
     font-size: .95rem;
}
 .paystrip-text{
     color:#7a7a7a;
     font-size: .85rem;
     line-height: 1.2;
     white-space: nowrap;
}
 @media (max-width: 991.98px){
     .paystrip-inner{
         flex-direction:column;
         align-items:flex-start;
    }
     .paystrip-label{
         min-width: auto;
    }
     .paystrip-items{
         flex-wrap:wrap;
         justify-content:flex-start;
    }
     .paystrip-text{
         white-space: normal;
    }
}

.costs-pricelist {
  background: #f6f6f6;
}

.costs-header {
  gap: 14px;
}

.costs-pricelist-title {
  font-size: 13px;
  font-weight: 600;
  color: #1f1f1f;
}

.costs-download-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.costs-download-btn i {
  font-size: 14px;
  line-height: 1;
}

.costs-cats {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.costs-cat {
  display: block;
  text-decoration: none;
  color: #2b2b2b;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 9px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.costs-cat + .costs-cat {
  margin-top: 6px;
}

.costs-cat:hover {
  background: #f3f3f3;
  color: #111;
}

.costs-cat.is-active {
  background: var(--brand-red, #e0312d);
  color: #ffffff;
}

.costs-table-card {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  overflow: hidden;
}

.costs-table {
  margin: 0;
}

.costs-table thead th {
  font-size: 12px;
  font-weight: 700;
  color: #222;
  background: #ffffff;
  padding: 14px 18px;
  border-bottom: 1px solid #ededed;
}

.costs-table tbody td {
  font-size: 12px;
  color: #222;
  padding: 14px 18px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

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

.costs-td-title {
  font-weight: 600;
  color: #1a1a1a;
}

.costs-td-desc {
  color: #6f6f6f;
}

.costs-td-price {
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

.w-40 {
  width: 40%;
}

.w-20 {
  width: 20%;
}

.costs-hints {
  padding-left: 2px;
}

.costs-hints-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.costs-hints-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.costs-hints-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.55;
  color: #6f6f6f;
}

.costs-hints-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--brand-red, #e0312d);
}

.costs-hints-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

@media (max-width: 575.98px) {
  .costs-header {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .costs-download-btn {
    width: 100%;
    justify-content: center;
  }

  .w-40,
  .w-20 {
    width: auto;
  }

  .costs-table thead th,
  .costs-table tbody td {
    padding: 12px 14px;
  }
}
