/* Comparison */
/* Base */
:root {
  --bg: #ffffff;
  --text: #0b0f19;
  --muted: #6b7280;
  --primary: #0d6efd;
  --danger: #dc3545;
  --border: #eef2f7;
  --row-alt: #f4f9feff;
}

/* Container */
#pricing {
  /* max-width: 1200px; */
  /* padding: 3rem 24px; */
  margin: 0 auto;

  font-family: "Inter", Roboto;
  overflow-x: hidden;

  #pricing > div {
    width: 75%;
    margin: 0 auto;
    overflow-x: hidden;
  }

  /* Table */
  table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 60px;
  }

  thead th,
  tbody th,
  td {
    padding: 18px 20px;
    vertical-align: middle;
  }

  thead th {
    position: sticky;
    top: 65px;
    z-index: 3;
    background: #fff;
    box-shadow: 0 1px 0 var(--border);
    text-align: center;
  }

  tbody tr:nth-child(odd) {
    background-color: #fff;
  }

  tbody tr:nth-child(even) {
    background-color: var(--row-alt);
  }

  td + td,
  th + th {
    border-left: 1.5px solid var(--border);
  }

  /* Header styling */
  thead th:first-child {
    width: 25%;
    /* display: block !important; */
  }

  /* thead th:not(:first-child) {
    width: 25%;
  } */

  /* thead th:not(:first-child) {
    display: flex;
    flex-direction: column;
  } */

  thead th h2 {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
  }
  thead th span[id="prev"] {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
  }

  thead th h3 {
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
  }

  thead th h3 span {
    text-decoration: line-through;
    font-size: 2px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    margin-left: 0.5rem;
  }

  /* Badge */
  thead th div {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 5px;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    background-color: rgba(220, 53, 69, 0.08);
    color: #842029;
    border: 1px solid rgba(220, 53, 69, 0.3);
    margin-bottom: 1rem;
  }

  thead th div span {
    font-weight: 600;
  }

  /* Buttons */
  a {
    display: inline-block;
    border-radius: 5px;
    padding: 0.45rem 0.7rem;
    font-size: 0.85rem;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    color: #111827;
    border: 1px solid #1f2937;
    background-color: transparent;
  }

  .help {
    border-radius: 0px;
  }

  a:hover {
    background-color: #1d2943ff;
    color: #fff;
  }

  thead th:last-child a {
    color: #fff;
    background-color: #111827;
    border: 1px solid #111827;
  }

  thead th:last-child a:hover {
    opacity: 0.9;
  }

  /* Table body */
  tbody th[scope="row"] {
    font-weight: 500;
    color: #111827;
    background-color: transparent;
  }

  td {
    text-align: center;
    color: var(--text);
  }

  /* Bootstrap Icons */
  td i {
    font-size: 1.1rem;
  }

  td i.bi-check-circle-fill {
    color: var(--primary);
  }

  td i.bi-x-circle-fill {
    color: var(--danger);
  }

  /* Small text */
  em {
    font-size: 0.875rem;
    color: var(--muted);
  }

  /* Mobile CTA row */
  tbody tr:last-child {
    display: none;
  }

  tbody tr:last-child td {
    text-align: center;
  }

  tbody tr:last-child h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0;
  }

  tbody tr:last-child h4 span {
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    margin-left: 0.5rem;
  }

  tbody tr:last-child button {
    display: inline-block;
    border-radius: 8px;
    padding: 0.45rem 0.7rem;
    font-size: 0.85rem;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #111827;
    border: 1px solid #1f2937;
    background-color: transparent;
  }

  tbody tr:last-child button:hover {
    background-color: #111827;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  tbody tr:last-child td:last-child button {
    color: #fff;
    background-color: var(--primary);
    border: 1px solid var(--primary);
  }

  tbody tr:last-child td:last-child button:hover {
    opacity: 0.9;
  }

  /* Responsive */
  @media (max-width: 992px) {
    #pricing > div {
      width: 100%;
    }

    thead th {
      top: 0;
    }

    thead th,
    td,
    tbody th {
      padding-top: 14px;
      padding-bottom: 14px;
    }
  }

  @media (max-width: 576px) {
    tbody tr:last-child {
      display: table-row;
    }
  }

  #disclaimers {
    padding: 0 0;
    margin: 0 auto;
  }

  .disclaimer-box {
    background-color: rgba(55, 125, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto;
  }

  .disclaimer-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0b0f19;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .disclaimer-box h3 i {
    color: #dc3545;
    font-size: 1rem;
  }

  .disclaimer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .disclaimer-box li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #0b0f19;
  }

  .disclaimer-box li i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
  }

  /* Help Section */

  #help {
    border: 5px solid rgba(42, 116, 255, 0.6);
    border-radius: 12px;
    padding: 3rem 24px;
    margin: 3rem auto;
    text-align: center;
  }

  #help p {
    font-size: 2rem;
    color: #000000ff;
    font-family: "Merienda", cursive;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  /* #help .bo {
    font-weight: 700;
    color: #000000ff;
  }

  #help p a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
  } */

  /* .contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background-color: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .contact-icon i {
    font-size: 1.2rem;
    color: var(--primary);
  }

  .contact-card p {
    font-size: 0.9rem;
    color: #0b0f19;
    font-weight: 500;
    margin: 0;
  } */

  /* Responsive */
  @media (max-width: 768px) {
    .contact-cards {
      flex-direction: column;
      gap: 1rem;
    }

    .disclaimer-box {
      padding: 1rem;
    }
  }
}

.hide-this {
  opacity: 0;
  pointer-events: none;
}