/* ===== COMPARISON TABLE ===== */
.comp {
  padding: 80px 0;
}

.comp-wrap {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 var(--side);
  overflow: hidden;
}

.comp h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 120px;
}

/* Grid: 3 sütun, 7 satır — subgrid ile eşit yükseklik */
.comp-content {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  grid-template-rows: repeat(7, auto);
  gap: 12px 26px;
}

/* Her kolon tüm satır yüksekliğini kapsıyor, subgrid ile senkronize */
.comp-col-func {
  grid-column: 1;
  grid-row: 1 / 8;
  display: grid;
  grid-template-rows: subgrid;
  gap: 12px;
  min-width: 0;
}

.comp-col-sm:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1 / 8;
  display: grid;
  grid-template-rows: subgrid;
  gap: 12px;
  min-width: 0;
}

.comp-col-sm:nth-of-type(3) {
  grid-column: 3;
  grid-row: 1 / 8;
  display: grid;
  grid-template-rows: subgrid;
  gap: 12px;
  min-width: 0;
}

.comp-head {
  background: var(--purple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  min-width: 0;
  min-height: 85px;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  height: 85px;
}

.comp-head-c {
  justify-content: center;
  text-align: center;
  padding: 0 10px;
}

.comp-row {
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 14px 25px;
  font-family: 'DM Sans', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--black);
}

.comp-row-c {
  justify-content: center;
  padding: 14px 10px;
}

.comp-row-c img {
  width: 37px;
  height: 37px;
}

/* Shelfmatic header: text desktop, logo mobile */
.comp-head-logo {
  display: none;
  width: 32px;
  height: auto;
}

.comp-head-text {
  display: inline;
}
