/* COMPARISON TABLE */
.comp-wrap{
  overflow-x:auto;
  border-radius:14px;
  border:1.5px solid #E5E7EB;
}
.comp-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.comp-table th{
  padding:16px 20px;
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:13.5px;
  text-align:left;
  white-space:nowrap;
}
.comp-table th:first-child{
background: #2c3e50;
    color: #fff;
}
.comp-table th.col-native{
  background:#2563EB;
  color:#fff;
  text-align:center;
}
.comp-table th.col-cross{
  background:#061a4a;
  color:#fff;
  text-align:center;
}
.comp-table th.col-hybrid{
  background:#fd7000;
  color:#fff;
  text-align:center;
}
.comp-table td{
  padding:13px 20px;
  border-top:1px solid #E5E7EB;
  color:#374151;
  vertical-align:middle;
}
.comp-table td:first-child{
  font-weight:600;
  color:#0D1B3E;
  background:#F8F9FF;
}
.comp-table td.col-native,
.comp-table td.col-cross,
.comp-table td.col-hybrid{
  text-align:center;
}
.comp-table td.col-cross{
  background:rgba(5,150,105,.03);
}
.best-tag{
  display:inline-block;
  background:#059669;
  color:#fff;
  font-size:10px;
  font-weight:700;
  padding:1px 7px;
  border-radius:8px;
  margin-left:5px;
  font-family:'Poppins',sans-serif;
  vertical-align:middle;
}


/* APPROACH EXPLAINER — 3 columns */
.approach-mob--grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.approach-mob--grid .ap-card{
  border-radius:16px;
  padding:28px 24px;
  text-align:center;
  position:relative;
}
.approach-mob--grid .ap-native{
  background:rgba(0,122,255,.06);
  border:2px solid rgba(0,122,255,.18);
}
.approach-mob--grid .ap-cross{
background: #e1eaff;
    border: 2px solid rgb(150 175 233);
}
.approach-mob--grid .ap-hybrid{
  background:rgba(245,124,0,.06);
  border:2px solid rgba(245,124,0,.18);
}
.approach-mob--grid .ap-icon{
  font-size:40px;
  margin-bottom:12px;
  display:block;
}
.approach-mob--grid .ap-badge{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  padding:3px 10px;
  border-radius:20px;
  margin-bottom:10px;
  font-family:'Poppins',sans-serif;
}
.approach-mob--grid .ap-native .ap-badge{
  background:rgba(0,122,255,.12);
  color:#2563EB;
}
.approach-mob--grid .ap-cross .ap-badge{
background: rgb(6 26 74 / 28%);
    color: #061a4a;
}
.approach-mob--grid .ap-hybrid .ap-badge{
  background:rgba(245,124,0,.12);
  color:#F57C00;
}
.approach-mob--grid .ap-card h3{
  font-size:18px;
  font-weight:800;
  margin-bottom:8px;
  font-family:'Poppins',sans-serif;
}
.approach-mob--grid .ap-native h3{
  color:#2563EB;
}
.approach-mob--grid .ap-cross h3{
  color:#061a4a;
}
.approach-mob--grid .ap-hybrid h3{
  color:#F57C00;
}
.approach-mob--grid .ap-tech{
  font-size:12px;
  font-weight:700;
  margin-bottom:10px;
  color:#6B7280;
}
.approach-mob--grid .ap-card p{
  font-size:13.5px;
  color:#374151;
  line-height:1.7;
  margin-bottom:14px;
}
.approach-mob--grid .ap-list{
  list-style:none;
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.approach-mob--grid .ap-list li{
  font-size:13px;
  color:#374151;
  display:flex;
  align-items:flex-start;
  gap:7px;
}
.approach-mob--grid .ap-native .ap-list li::before{
  content:'✓';
  font-size:10px;
  color:#2563EB;
  font-weight:700;
  flex-shrink:0;
  margin-top:2px;
}
.approach-mob--grid .ap-cross .ap-list li::before{
  content:'✓';
  font-size:10px;
  color:#059669;
  font-weight:700;
  flex-shrink:0;
  margin-top:2px;
}
.approach-mob--grid .ap-hybrid .ap-list li::before{
  content:'✓';
  font-size:10px;
  color:#F57C00;
  font-weight:700;
  flex-shrink:0;
  margin-top:2px;
}
.approach-mob--grid .ap-best{
  margin-top:14px;
  padding:10px 12px;
  border-radius:8px;
  font-size:12.5px;
  color:#374151;
  line-height:1.5;
}
.approach-mob--grid .ap-native .ap-best{
  background:rgba(0,122,255,.07);
}
.approach-mob--grid .ap-cross .ap-best{
  background:rgb(6 26 74 / 28%);
}
.approach-mob--grid .ap-hybrid .ap-best{
  background:rgba(245,124,0,.07);
}
.approach-mob--grid .ap-best strong{
  display:block;
  font-size:11px;
  font-weight:700;
  margin-bottom:3px;
}
.approach-mob--grid .ap-native .ap-best strong{
  color:#2563EB;
}
.approach-mob--grid .ap-cross .ap-best strong{
  color:#061a4a;
}
.approach-mob--grid .ap-hybrid .ap-best strong{
  color:#F57C00;
}