/* Price box */
.turbo-price-box{
  margin: 10px 0 18px;
}

.turbo-price-main{
  font-size: 30px;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
}

.turbo-price-sub{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:8px;
  font-size:14px;
  color:#666;
}

/* Small cards */
.turbo-features-box-v3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin:22px 0 18px;
}

.turbo-card.small{
  background:#050505;
  border:1px solid #202020;
  border-radius:14px;
  padding:14px 10px;
  min-height:96px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  transition:all .25s ease;
}

.turbo-card.small:hover{
  transform:translateY(-3px);
  border-color:#b59a2c;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.turbo-card.small .turbo-icon{
  display:block;
  font-size:24px;
  margin-bottom:8px;
}

.turbo-card.small .turbo-label{
  color:#fff;
  font-size:14px;
  line-height:1.35;
  font-weight:500;
}

/* OEM info box */
.turbo-meta-box{
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:16px;
  padding:18px 22px;
  margin:8px 0 18px;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.turbo-meta-row{
  font-size:16px;
  line-height:1.7;
  color:#333;
  margin-bottom:8px;
}

.turbo-meta-row:last-child{
  margin-bottom:0;
}

.turbo-meta-row strong{
  color:#111;
}

/* Message under description */
.turbo-message-box{
  margin-top:18px;
  padding:16px 18px;
  border-left:4px solid #b59a2c;
  background:#faf8f1;
  border-radius:10px;
  color:#222;
  font-size:15px;
  line-height:1.7;
}

.turbo-message-box p{
  margin:0 0 10px;
}

.turbo-message-box p:last-child{
  margin-bottom:0;
}

/* Tabs */
.turbo-tab-content{
  font-size:16px;
  line-height:1.8;
  color:#333;
}

.turbo-list{
  margin:0;
  padding-left:18px;
}

.turbo-list li{
  margin-bottom:8px;
}

/* Responsive */
@media (max-width: 1024px){
  .turbo-features-box-v3{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 767px){
  .turbo-price-main{
    font-size:26px;
  }

  .turbo-features-box-v3{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .turbo-card.small{
    min-height:88px;
    padding:12px 8px;
  }

  .turbo-card.small .turbo-icon{
    font-size:21px;
  }

  .turbo-card.small .turbo-label{
    font-size:13px;
  }

  .turbo-meta-box{
    padding:16px;
  }

  .turbo-meta-row{
    font-size:15px;
  }

  .turbo-message-box{
    font-size:14px;
    padding:14px 14px;
  }
}