/* ============================================================
   TeleBeing V910A - Real Business Card Refinement
   Add after V900 production CSS bundles.
   ============================================================ */

.tb-v910-card{
  background:#fff;
  border:1px solid #dfe7f3;
  border-radius:28px;
  padding:16px;
  margin:18px 0;
  box-shadow:0 18px 46px rgba(15,23,42,.08);
  overflow:hidden;
  font-family:Arial,Helvetica,sans-serif;
}

.tb-v910-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.tb-v910-identity{
  display:flex;
  gap:13px;
  align-items:flex-start;
  min-width:0;
  flex:1 1 420px;
}

.tb-v910-logo{
  width:68px;
  height:68px;
  border-radius:20px;
  background:#07182f;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
  font-size:24px;
  font-weight:900;
  flex:0 0 auto;
  box-shadow:0 10px 22px rgba(15,23,42,.14);
}

.tb-v910-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tb-v910-heading h2{
  margin:5px 0 5px;
  font-size:23px;
  line-height:1.15;
  color:#0f172a;
}

.tb-v910-sub{
  color:#64748b;
  font-size:13px;
  font-weight:800;
}

.tb-v910-kicker{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

.tb-v910-badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  border-radius:999px;
  padding:6px 9px;
  font-size:11px;
  font-weight:950;
}

.tb-v910-badge.gold{
  background:#fef3c7;
  color:#92400e;
  border:1px solid #fde68a;
}

.tb-v910-badge.blue{
  background:#eff6ff;
  color:#1d4ed8;
  border:1px solid #bfdbfe;
}

.tb-v910-badge.soft{
  background:#f8fafc;
  color:#475569;
  border:1px solid #e2e8f0;
}

.tb-v910-scorebox{
  display:grid;
  grid-template-columns:repeat(3,minmax(74px,1fr));
  gap:8px;
  flex:0 1 270px;
}

.tb-v910-scorebox div{
  background:#f8fbff;
  border:1px solid #e1edf8;
  border-radius:18px;
  padding:10px;
  text-align:center;
}

.tb-v910-scorebox strong{
  display:block;
  color:#07182f;
  font-size:20px;
  line-height:1;
}

.tb-v910-scorebox span{
  display:block;
  color:#64748b;
  font-size:10px;
  font-weight:900;
  margin-top:5px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.tb-v910-hero{
  min-height:210px;
  background-size:cover;
  background-position:center;
  border-radius:24px;
  margin:14px 0;
  position:relative;
  overflow:hidden;
  border:1px solid #e2e8f0;
}

.tb-v910-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(15,23,42,.02),rgba(15,23,42,.68));
}

.tb-v910-hero-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:34px 15px 14px;
  color:#fff;
}

.tb-v910-hero-overlay span{
  display:inline-flex;
  background:#f5b833;
  color:#07182f;
  border-radius:999px;
  padding:6px 9px;
  font-size:11px;
  font-weight:950;
  margin-bottom:7px;
}

.tb-v910-hero-overlay strong{
  display:block;
  font-size:19px;
  text-shadow:0 2px 10px rgba(0,0,0,.45);
}

.tb-v910-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:12px 0;
}

.tb-v910-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  border-radius:999px;
  padding:9px 12px;
  font-size:12px;
  font-weight:950;
  text-decoration:none;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  color:#334155;
}

.tb-v910-actions a.primary{
  background:#f5b833;
  border-color:#f5b833;
  color:#07182f;
}

.tb-v910-actions a.dark{
  background:#07182f;
  border-color:#07182f;
  color:#fff;
}

.tb-v910-desc{
  color:#334155;
  font-size:14px;
  line-height:1.65;
  margin:12px 0;
}

.tb-v910-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:12px 0;
}

.tb-v910-panel,
.tb-v910-services,
.tb-v910-offer{
  background:#f8fbff;
  border:1px solid #e1edf8;
  border-radius:22px;
  padding:14px;
}

.tb-v910-panel.ai{
  background:linear-gradient(135deg,#f8fbff,#fff7ed);
}

.tb-v910-panel h4,
.tb-v910-services h4{
  margin:0 0 9px;
  color:#0f172a;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:7px;
}

.tb-v910-panel p{
  margin:0;
  color:#475569;
  line-height:1.55;
  font-size:13px;
}

.tb-v910-mini-list{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin-top:10px;
}

.tb-v910-mini-list span,
.tb-v910-pill{
  display:inline-flex;
  border-radius:999px;
  padding:6px 9px;
  background:#fff;
  border:1px solid #e2e8f0;
  color:#475569;
  font-size:11px;
  font-weight:900;
}

.tb-v910-info-row{
  display:grid;
  grid-template-columns:105px 1fr;
  gap:8px;
  border-top:1px solid #e2e8f0;
  padding-top:8px;
  margin-top:8px;
  font-size:12px;
}

.tb-v910-info-row:first-of-type{
  border-top:0;
  padding-top:0;
  margin-top:0;
}

.tb-v910-info-row b{
  color:#0f172a;
}

.tb-v910-info-row span{
  color:#475569;
}

.tb-v910-section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.tb-v910-section-head span{
  font-size:11px;
  color:#64748b;
  font-weight:900;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:999px;
  padding:5px 8px;
}

.tb-v910-service-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}

.tb-v910-service{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:10px;
}

.tb-v910-service strong{
  display:block;
  color:#0f172a;
  font-size:13px;
}

.tb-v910-service span{
  display:block;
  color:#64748b;
  font-size:12px;
  line-height:1.45;
  margin-top:5px;
}

.tb-v910-service em{
  display:inline-block;
  margin-top:7px;
  font-style:normal;
  color:#047857;
  font-weight:900;
}

.tb-v910-review-score{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.tb-v910-review-score strong{
  width:48px;
  height:48px;
  border-radius:16px;
  background:#fef3c7;
  color:#92400e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.tb-v910-review-score span{
  color:#64748b;
  font-size:12px;
  font-weight:900;
}

.tb-v910-panel blockquote{
  margin:0;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:10px;
}

.tb-v910-panel blockquote b,
.tb-v910-panel blockquote span,
.tb-v910-panel blockquote small{
  display:block;
}

.tb-v910-panel blockquote b{
  color:#0f172a;
  font-size:13px;
  margin-bottom:5px;
}

.tb-v910-panel blockquote span{
  color:#475569;
  font-size:12px;
  line-height:1.5;
}

.tb-v910-panel blockquote small{
  color:#64748b;
  margin-top:7px;
  font-weight:900;
}

.tb-v910-post-img{
  min-height:98px;
  border-radius:16px;
  background-size:cover;
  background-position:center;
  border:1px solid #e2e8f0;
  margin-bottom:9px;
}

.tb-v910-panel small{
  display:block;
  color:#64748b;
  font-size:11px;
  font-weight:900;
  margin-top:8px;
}

.tb-v910-trust-strip{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:8px;
  margin:13px 0;
}

.tb-v910-trust-strip div{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:9px;
  text-align:center;
}

.tb-v910-trust-strip strong{
  display:block;
  color:#0f172a;
  font-size:17px;
}

.tb-v910-trust-strip span{
  display:block;
  color:#64748b;
  font-size:10px;
  font-weight:900;
  margin-top:4px;
  text-transform:uppercase;
}

.tb-v910-languages{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px;
  color:#475569;
  font-size:12px;
  margin:10px 0;
}

.tb-v910-languages b{
  color:#0f172a;
  margin-right:3px;
}

.tb-v910-offer{
  background:#fff7ed;
  border-color:#fed7aa;
  display:flex;
  flex-direction:column;
  gap:6px;
  color:#7c2d12;
  margin:12px 0;
}

.tb-v910-offer strong{
  font-size:14px;
}

.tb-v910-offer span{
  font-size:13px;
  line-height:1.5;
}

.tb-v910-offer em,
.tb-v910-offer small{
  font-style:normal;
  font-size:12px;
  font-weight:900;
}

.tb-v910-final-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:#07182f;
  color:#fff;
  border-radius:22px;
  padding:14px;
  margin-top:14px;
}

.tb-v910-final-cta strong,
.tb-v910-final-cta span{
  display:block;
}

.tb-v910-final-cta strong{
  font-size:14px;
}

.tb-v910-final-cta span{
  color:#cbd5e1;
  font-size:12px;
  margin-top:4px;
}

.tb-v910-final-cta a{
  background:#f5b833;
  color:#07182f;
  border-radius:999px;
  padding:10px 13px;
  font-weight:950;
  text-decoration:none;
  white-space:nowrap;
  font-size:12px;
}

@media(max-width:760px){
  .tb-v910-card{
    border-radius:22px;
    padding:12px;
    margin:14px 0;
  }

  .tb-v910-top{
    gap:12px;
  }

  .tb-v910-logo{
    width:58px;
    height:58px;
    border-radius:17px;
  }

  .tb-v910-heading h2{
    font-size:19px;
  }

  .tb-v910-scorebox{
    grid-template-columns:repeat(3,1fr);
    flex:1 1 100%;
  }

  .tb-v910-hero{
    min-height:165px;
    border-radius:18px;
  }

  .tb-v910-grid,
  .tb-v910-service-list{
    grid-template-columns:1fr;
  }

  .tb-v910-trust-strip{
    grid-template-columns:repeat(3,1fr);
  }

  .tb-v910-actions a{
    flex:1 1 auto;
  }

  .tb-v910-final-cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .tb-v910-final-cta a{
    width:100%;
    text-align:center;
  }
}

@media(max-width:420px){
  .tb-v910-trust-strip{
    grid-template-columns:repeat(2,1fr);
  }

  .tb-v910-info-row{
    grid-template-columns:1fr;
  }
}
