.cb30-why_get_compare {
  position: relative;
  background-color: var(--color-bg, #fff);
  padding: 8rem 0;
}

.comp-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}

.comp-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background-color: #4a77321a;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.comp-title {
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.comp-subtitle {
  font-size: 15px;
  color: var(--light-green);
  line-height: 1.625;
  max-width: 32rem;
  margin: 0 auto;
}

.comp-table-wrapper {
  border: 1px solid #d9ded9;
  border-radius: 12px;
  overflow-x: auto;
  background-color: var(--color-bg, #fff);
  opacity: 0;
   transform: translateY(20px);
   transition: opacity .7s ease, transform .7s ease;
}

.comp-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  min-width: 767px;
  
}

.comp-grid .contents {
  display: contents;
}

.comp-cell {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--color-primary);
  line-height: 1.4;
  border-bottom: 1px solid #d9ded9;
}

/* Left borders for grid columns 2, 3, and 4 */
.comp-cell:nth-child(4n+2),
.comp-cell:nth-child(4n+3),
.comp-cell:nth-child(4n+4) {
  border-left: 1px solid #d9ded9;
}

.comp-cell:nth-child(4n+3) .header-label,
.comp-cell:nth-child(4n+4) .header-label {
  text-transform: capitalize;
}

/* Center alignment for comparison column items */
.comp-cell:not(:nth-child(4n+1)) {
  justify-content: center;
}

/* Text alignment & weight adjustments for values */
.comp-cell:not(:nth-child(4n+1)) .text-label {
  text-align: center;
  color: var(--light-green);
}

/* Strip bottom border on the last structural row */
.comp-grid .contents:last-of-type .comp-cell {
  border-bottom: none;
}

.comp-header-cell {
  background: #f1f3f14d;
  border-bottom: 1px solid #d9ded9;
}

.comp-header-cell .header-label {
  color: var(--light-green);
}

.comp-brand-header {
  background-color: rgba(54, 98, 53, 0.05);
  border-bottom: 1px solid #d9ded9;
  border-left: 1px solid #d9ded9;
  justify-content: center;
}

.header-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.comp-brand-bg {
  background-color: rgba(54, 98, 53, 0.02);
}

.comp-brand-bg .text-label {
  color: var(--primary) !important;
  font-weight: 600;
}

.text-label {
  font-size: 13px;
}

.comp-cell .icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.icon-check-wrapper {
  background-color: rgb(74 119 50 / 10%);
}

.icon-x-wrapper {
  background-color: #fef2f2;
}

.icon-check,
.icon-x,
.icon-arrow {
  display: block;
}

.icon-check {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.icon-x {
  width: 14px;
  height: 14px;
  color: #f87171;
}

.icon-arrow {
  width: 16px;
  height: 16px;
  color: var(--color-bg, #fff);
}

.comp-cta-wrapper {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}
.comp-header.is-visible,
.comp-table-wrapper.is-visible,
.comp-cta-wrapper.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width:1023.98px) {
  .cb30-why_get_compare {
    padding: 6rem 0;
}
}
@media (max-width:767px) {
  .comp-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
  .cb30-why_get_compare {
    padding: 4rem 0;
}
.comp-header {
    text-align: left;
}
.comp-subtitle{
  max-width: 100%;
}
}