/* ===== Compare Our Plans Section ===== */
.pricing-section {
  /* padding: 80px 0; */
  background-color: var(--white);
}

.pricing-section .pricing-content {
  max-width: 1192px;
  margin: auto;
}

.pricing-section p {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.pricing-section .table {
  width: 100%;
  position: relative;
  border-collapse: collapse;
}

.pricing-section .table thead {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid #DCDBDA;
  z-index: 1;
}

.pricing-section .table thead tr th {
  padding-right: 16px;
  position: relative;
}

.pricing-section .table thead tr th:not(:first-of-type) {
  width: 201px;
}

.table-head {
  padding-right: 40.5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 20px;
}
.table-head span {
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.04em;
}

.table-head small {
  font-size: 12px;
  color: var(--coral);
}

.table-head a {
  grid-column: span 2;
  width: 100%;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 16px;
}

.table thead tr th img {
  width: 54.86px;
}

.table tbody tr:nth-of-type(even):not(:first-child) {
  background-color: #F5F3ED;
}

.table thead tr th span small{
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 45px;
    color: var(--coral);
}

.table thead tr th a {
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 16px;
}

.table td {
  padding: 16px 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.table td.table-data:first-of-type {
  padding-left: 40px;
  text-align: left;
  display: flex;
  align-items: center;
}

.table td.table-data:not(:first-of-type) {
  text-align: center;
  /* padding-right: 56.5px; */
}


.table td img {
  width: 20px;
  display: inline;
}

.table h5 {
  margin-top: 24px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

/* Tooltip and Info Icon */
.tooltip-trigger.info-icon {
  margin-left: 4px;
  cursor: pointer;
  position: relative;
}

.tooltip-trigger.info-icon img {
  width: 16px;
  vertical-align: middle;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
  .pricing-section {
    /* padding: 80px 56px; */
  }
  .table-head {
    padding-right: 20.5px;
  }
  .table thead tr th {
    padding-right: 0;
  }
  .table thead tr th:first-of-type {
    width: 23%;
  }
  .table td.table-data:not(:first-of-type) {
    padding-right: 28.5px;
  }
}

@media (max-width: 600px) {
  .pricing-section {
    /* padding: 56px 32px; */
  }
  .pricing-section .table {
    display: none; /* replaced by mobile table layout elsewhere */
  }
}
