.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  /* border: 1px solid rgba(0,0,0,0.05); */
  width: 100%;
  gap: 20px;
}

.comparison-grid .cell {
  padding: 2px;
  text-align: center;
  min-height: 53px;
  align-content: center;
  /* border: 1px solid rgba(0,0,0,0.05); */
  background-color: rgba(110,151,255,10%);
}
.comparison-grid .comparison-row{ display: grid;}
.comparison-grid .comparison-row.header-row{ position: relative;}
/* .comparison-grid .comparison-row.header-row:after{ content: "";
  position: absolute;
  top: 5%;
  right: 0;
  width: 1.5px;
  height: 90%;
  background: linear-gradient(to bottom, #003BB1, #00B2A9);} */
.comparison-grid .comparison-row .cell:last-child{border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; padding-bottom: 30px; min-height: 81px;}
.comparison-grid .comparison-row .cell.cell:nth-child(2){  min-height: 81px; padding-top: 30px;}
.comparison-row.header-row .row-title:first-child{ padding: 15px; background: transparent; min-height: 60px; display: flex; align-items: end;}
.comparison-grid .row-title {
  text-align: left;
  font-weight: bold;
  background-color: rgba(110,151,255,10%);
  position: sticky;
  padding: 0px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  left: 0;
  z-index: 2;
}
.comparison-grid .comparison-row .row-title .title_box{  background: #fff; border-radius: 50px; padding:10px 20px; min-height: 60px; text-align: center; display: flex; flex-direction: column; justify-content: center; font-size: 15px; line-height:20px; justify-content: space-between; color: #2B005D; font-weight: 600; justify-content: center;}
.comparison-grid .comparison-row .row-title .title_box small{ color:#8744C5; font-size: 10px; margin-top: 0px; text-transform: uppercase; font-weight: 500;}

.comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1){   background: rgba(135,68,197,15%);}
.comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1) .title_box:before, .comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1) .title_box::before{ content:"";background: url("https://w3ll.com/wp-content/uploads/2025/12/W3LL_Logo_DarkViolet.svg") center top no-repeat; width: 82px; position: relative; display: block; margin:3px auto 0px; height: 15px; margin-bottom: 0px;  background-size: contain;}
.comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1) .title_box{ color: #1C37FF; font-size: 10px; text-transform: uppercase;}
.comparison-grid .comparison-row:nth-child(2) .cell{ background-color: rgba(135,68,197,15%);}
/* .comparison-grid .comparison-row:nth-child(2) .cell:last-child{border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;} */
.comparison-grid .header-row .cell {
  background:transparent;
  font-weight: 600;
  color: #2B005D;
  text-align: left;
  z-index: 1;
}

.full {
  display: inline-block;
  width: 19px;
  height: 19px;
  min-width: 19px;
  background: url("../images/circle_full.svg") center top no-repeat; 
}
.full_well {
  display: inline-block;
  width: 19px;
  height: 19px;
  min-width: 19px;
  background: url("../images/circle_full_well.svg") center top no-repeat; 
}

.half {
  display: inline-block;
  width: 20px;
  height: 21px;
  min-width: 20px;
  background: url("../images/circle_half.svg") left top no-repeat; 
  /* border: 1px solid #fff; */
}

.empty {
  display: inline-block;
  width: 21px;
  height: 22px;
  min-width: 21px;
  background: url("https://w3ll.com/wp-content/uploads/2025/12/Question-in-Circle.svg") center top no-repeat; 
}
  .comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1) .title_box br{ display: none;}
/* Responsive for mobile */
@media (max-width: 1024px) {
  .comparison-grid {
    display: block;
  }
  .comparison-row {
    display: block;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    /* background: #fff; */
    margin-bottom: 15px;
    padding: 10px;
  }

  .comparison-row .cell {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    border: none;
    align-items: center;
  }
  /* .half{ min-width: 20px;} */
  .comparison-grid .comparison-row .row-title .title_box{ background: transparent; min-height: initial;}
.comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1){ background-color: #fff;}
.comparison-grid .comparison-row:nth-child(2) .cell{ color: #2B005D;}
.comparison-grid .comparison-row .row-title .title_box{ margin: auto;}
  .comparison-grid .comparison-row .cell:last-child{ padding-bottom: 30px;}
  .comparison-grid .comparison-row .row-title .title_box small{ margin-top: 5px;}
.comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1) .title_box::before{ margin-bottom: 5px;}


  .comparison-row .cell::before {
    content: attr(data-label);
    font-weight: 600;
    margin-right: 10px;
    text-align: left;
  }

  .comparison-row .cell:nth-child(2){ padding-top: 30px;}

  .comparison-grid .row-title {
    position: relative;
    left: 0;
    background: #f9fbff;
  }

  .comparison-grid .header-row {
    display: none;
  }
  .comparison-grid .comparison-row .cell.row-title:before{ display: none;}
}
