/* ============================================================
   WEBTV (split from addons.css)
   ============================================================ */

/* ============================================================
   WEB TV - brascast-tv.html
   ============================================================ */
/* White navbar on dark hero (disappears when scrolled, navbar turns white) */
body.tv-page .navbar-wrap:not(.scrolled) .nav-links > li > a { color: rgba(255,255,255,.7); background: transparent; }
body.tv-page .navbar-wrap:not(.scrolled) .nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,.08); }
body.tv-page .navbar-wrap:not(.scrolled) .nav-links > li > a.active { color: #fff; background: rgba(255,255,255,.14); }
body.tv-page .navbar-wrap:not(.scrolled) .nav-logo-text { color: #fff; }
body.tv-page .navbar-wrap:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }
body.tv-page .navbar-wrap:not(.scrolled) .btn-entrar { color: #fff; background: transparent; }
body.tv-page .navbar-wrap:not(.scrolled) .btn-entrar:hover { color: #fff; background: rgba(255,255,255,.12); }
body.tv-page .navbar-wrap:not(.scrolled) .nav-hamburger span { background: #fff; }

.tv-hero { position: relative; padding: calc(var(--nav-h) + 80px) 0 80px; background: linear-gradient(180deg, #0a1a16 0%, #0f1e1b 100%); color: #fff; overflow: hidden; }
.tv-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.tv-hero-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.tv-hero-blob--1 { width: 720px; height: 720px; background: radial-gradient(circle, rgba(23,141,114,.4) 0%, rgba(23,141,114,.15) 35%, transparent 70%); top: -240px; right: -200px; }
.tv-hero-blob--2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(78,217,182,.28) 0%, rgba(78,217,182,.1) 40%, transparent 70%); bottom: -160px; left: -160px; }
.tv-hero-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tv-hero-text .tag { background: rgba(23,141,114,.18); border-color: rgba(23,141,114,.35); color: var(--green-mid); }
.tv-hero-text h1 { font-size: clamp(28px, 4vw, 50px); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; color: #fff; margin: 18px 0 18px; text-wrap: balance; }
.tv-hero-text h1 .accent { color: var(--green-mid); }
.tv-hero-text .sub { font-size: 20px; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 28px; max-width: 520px; text-wrap: pretty; }
.tv-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.tv-hero-cta .btn--outline { border-color: rgba(255,255,255,.25); color: #fff; }
.tv-hero-cta .btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.tv-hero-trust { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; max-width: fit-content; font-size: 13.5px; color: rgba(255,255,255,.65); flex-wrap: wrap; }
.tv-hero-trust strong { color: #fff; font-weight: 800; }
.tv-hero-trust-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.3); }

/* animated LIVE dot */
.tv-live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b; margin-right: 4px; vertical-align: 1px; animation: tvPulse 1.6s ease-in-out infinite; }
.tv-live-dot--white { background: #ff3b3b; }
@keyframes tvPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,59,59,.5); }
  50%      { opacity: .85; transform: scale(1.1); box-shadow: 0 0 0 6px rgba(255,59,59,0); }
}

/* Multistream mockup */
.tv-hero-mockup { position: relative; }
.tv-multi { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 22px; box-shadow: 0 12px 28px rgba(0,0,0,.35); }

/* Encoder UI mockup */
.tv-encoder { background: #0d1814; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.3); }

/* Title bar (window-like) */
.tv-encoder-titlebar { display: flex; align-items: center; gap: 12px; padding: 9px 14px; background: rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.08); }
.tv-encoder-dots { display: flex; gap: 5px; flex-shrink: 0; }
.tv-encoder-dots span { width: 9px; height: 9px; border-radius: 50%; }
.tv-encoder-dots span:nth-child(1) { background: #ff5f57; }
.tv-encoder-dots span:nth-child(2) { background: #febc2e; }
.tv-encoder-dots span:nth-child(3) { background: #28c840; }
.tv-encoder-title { flex: 1; font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tv-encoder-rec { display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px; background: rgba(255,59,59,.18); border: 1px solid rgba(255,59,59,.4); color: #ff8a8a; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; border-radius: 4px; flex-shrink: 0; }
.tv-encoder-rec-dot { width: 6px; height: 6px; border-radius: 50%; background: #ff3b3b; animation: tvRecBlink 1.4s ease-in-out infinite; }
.tv-encoder-time { font-variant-numeric: tabular-nums; opacity: .9; }
@keyframes tvRecBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .25; }
}

/* Body: preview + stats */
.tv-encoder-body { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; padding: 14px; }
.tv-encoder-preview { position: relative; min-height: 200px; background: radial-gradient(ellipse at center, #1a3530 0%, #0a1a16 60%, #000 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.tv-encoder-live { position: absolute; top: 8px; left: 8px; display: inline-flex; align-items: center; gap: 4px; padding: 3px 7px; background: rgba(255,59,59,.95); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .06em; border-radius: 3px; }
.tv-encoder-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: tvRecBlink 1.4s ease-in-out infinite; }
.tv-encoder-res { position: absolute; bottom: 8px; right: 8px; padding: 2px 7px; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); color: rgba(255,255,255,.85); font-size: 9.5px; font-weight: 700; border-radius: 3px; font-variant-numeric: tabular-nums; }

/* Stats panel (right side) */
.tv-encoder-stats { display: flex; flex-direction: column; gap: 8px; }
.tv-encoder-stat { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 4.5px 10px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 6px; }
.tv-encoder-stat-label { font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,.45); letter-spacing: .06em; }
.tv-encoder-stat-value { font-size: 12px; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: 5px; font-variant-numeric: tabular-nums; }
.tv-encoder-stat-value strong { font-weight: 800; }
.tv-encoder-stat-value--on { color: #4ed9b6; }
.tv-encoder-stat-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: tvEncoderPulse 1.8s ease-in-out infinite; }
@keyframes tvEncoderPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%      { opacity: .85; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

/* VU meter - barras animadas tipo equalizador */
.tv-encoder-vu { display: inline-flex; gap: 2px; align-items: flex-end; height: 12px; }
.tv-encoder-vu span { display: block; width: 3px; background: var(--green-mid); border-radius: 1px; animation: tvVu 1s ease-in-out infinite alternate; transform-origin: bottom; }
.tv-encoder-vu span:nth-child(1)  { height: 35%; animation-delay: 0s; }
.tv-encoder-vu span:nth-child(2)  { height: 55%; animation-delay: -.1s; }
.tv-encoder-vu span:nth-child(3)  { height: 75%; animation-delay: -.2s; }
.tv-encoder-vu span:nth-child(4)  { height: 95%; animation-delay: -.3s; background: #4ed9b6; }
.tv-encoder-vu span:nth-child(5)  { height: 80%; animation-delay: -.4s; }
.tv-encoder-vu span:nth-child(6)  { height: 60%; animation-delay: -.5s; }
.tv-encoder-vu span:nth-child(7)  { height: 40%; animation-delay: -.6s; }
.tv-encoder-vu span:nth-child(8)  { height: 25%; animation-delay: -.7s; opacity: .55; }
.tv-encoder-vu span:nth-child(9)  { height: 15%; animation-delay: -.8s; opacity: .35; }
.tv-encoder-vu span:nth-child(10) { height: 10%; animation-delay: -.9s; opacity: .25; }
@keyframes tvVu {
  to { transform: scaleY(1.4); }
}

/* Animated connector between source and destinations */
.tv-multi-flow { position: relative; height: 56px; margin: 4px 0 0; }
.tv-multi-flow svg { width: 100%; height: 100%; display: block; }
.tv-multi-flow svg path { fill: none; stroke: var(--green-mid); stroke-width: 1.5; stroke-dasharray: 5 6; opacity: .7; animation: tvFlowDash 1.6s linear infinite; }
.tv-multi-flow svg path:nth-child(2) { animation-delay: -.4s; }
.tv-multi-flow svg path:nth-child(3) { animation-delay: -.8s; }
.tv-multi-flow svg path:nth-child(4) { animation-delay: -1.2s; }
@keyframes tvFlowDash {
  to { stroke-dashoffset: -22; }
}
.tv-multi-flow-label { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; background: rgba(15,30,27,.85); border: 1px solid rgba(78,217,182,.4); color: #fff; font-size: 11px; font-weight: 700; border-radius: 99px; }
.tv-multi-flow-label svg { width: 11px; height: 11px; }

/* Destinations (4-column grid) */
.tv-multi-dests { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.tv-multi-dest { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 12px 10px; display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; transition: background .2s, border-color .2s, transform .2s; }
.tv-multi-dest:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.tv-multi-dest-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; }
.tv-multi-dest-icon svg { width: 20px; height: 20px; }
.tv-multi-dest-icon--youtube  { background: #ff0000; }
.tv-multi-dest-icon--facebook { background: #1877f2; }
.tv-multi-dest-icon--instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tv-multi-dest-icon--site { background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); }
.tv-multi-dest-info strong { display: block; font-size: 12px; font-weight: 700; color: #fff; }
.tv-multi-dest-info span { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: rgba(255,255,255,.6); font-variant-numeric: tabular-nums; margin-top: 2px; }
.tv-multi-dest .tv-live-dot { width: 5px; height: 5px; margin-right: 0; vertical-align: 0; }

/* Features grid */
.tv-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tv-feature-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 26px 22px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.tv-feature-card:hover { border-color: var(--green); box-shadow: 0 14px 32px rgba(15,30,27,.06); transform: translateY(-2px); }
.tv-feature-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--green-light); color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.tv-feature-icon svg { width: 22px; height: 22px; }
.tv-feature-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; color: var(--text); margin-bottom: 6px; }
.tv-feature-card p { font-size: 17px; color: var(--text-muted); line-height: 1.55; }

/* Planos */
.tv-plans { background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }

/* Toggle Mensal/Anual */
.tv-toggle-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 40px; }
.tv-toggle { position: relative; display: inline-flex; padding: 4px; background: #fff; border: 1.5px solid var(--border); border-radius: 99px; box-shadow: 0 4px 14px rgba(15,30,27,.04); }
.tv-toggle-pill { position: absolute; top: 4px; bottom: 4px; left: 0; background: var(--green); border-radius: 99px; transition: transform .25s cubic-bezier(.4,0,.2,1), width .25s cubic-bezier(.4,0,.2,1); z-index: 0; }
.tv-toggle-btn { position: relative; z-index: 1; padding: 9px 24px; background: transparent; border: none; font-family: inherit; font-size: 17px; font-weight: 700; color: var(--text-muted); border-radius: 99px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.tv-toggle-btn.is-active { color: #fff; }
.tv-toggle-save { display: inline-block; padding: 2px 9px; background: #ef4444; color: #fff; border-radius: 99px; font-size: 11.5px; font-weight: 800; letter-spacing: .02em; white-space: nowrap; box-shadow: 0 2px 8px rgba(239,68,68,.35); }
.tv-toggle-btn:not(.is-active) .tv-toggle-save { background: #ef4444; color: #fff; }
.tv-installments { position: relative; display: inline-flex; align-items: center; gap: 6px; font-size: 15px; color: #fff; padding: 7px 16px; background: var(--text); border-radius: 99px; box-shadow: 0 4px 14px rgba(15,30,27,.18); }
.tv-installments svg { color: #4ed9b6; flex-shrink: 0; }
.tv-installments strong { color: #fff; font-weight: 700; }
.tv-installments::before { content: ""; position: absolute; top: -7px; left: calc(50% + 50px); transform: translateX(-50%); width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid var(--text); }
.tv-installments.is-hidden { display: none; }

/* 4-column grid */
.tv-plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.tv-plan { position: relative; background: #fff; border: 1.5px solid var(--border); border-radius: 18px; padding: 28px 20px; display: flex; flex-direction: column; gap: 12px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.tv-plan:hover { border-color: rgba(23,141,114,.4); box-shadow: 0 14px 32px rgba(15,30,27,.06); }
.tv-plan--featured { border-color: var(--green); box-shadow: 0 14px 36px rgba(23,141,114,.12); }
.tv-plan--featured:hover { border-color: var(--green-dark); box-shadow: 0 20px 44px rgba(23,141,114,.18); }
.tv-plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 5px 16px; background: var(--green); color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .04em; border-radius: 99px; box-shadow: 0 6px 18px rgba(23,141,114,.3); white-space: nowrap; }
.pln-card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 20px; background: var(--text); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; border-radius: 99px; box-shadow: 0 6px 18px rgba(15,30,27,.25); white-space: nowrap; }
.tv-plan-head .tv-plan-name { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--text); margin-bottom: 4px; }
.tv-plan-head p { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; min-height: 20px; }

/* Price */
.tv-plan-price-block { margin: -2px 0 -4px; padding-bottom: 4px; border-bottom: 1px solid var(--border); min-height: 92px; }
.tv-plan-price-monthly, .tv-plan-price-annual { display: none; }
.tv-plan-price-monthly.is-on, .tv-plan-price-annual.is-on { display: block; }
.tv-plan-price-old { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.tv-plan-price-strike { font-size: 14px; font-weight: 700; color: var(--text-muted); text-decoration: line-through; }
.tv-plan-price-off { font-size: 11px; font-weight: 800; color: var(--green); background: var(--green-light); padding: 2px 8px; border-radius: 4px; }
.tv-plan-price-main { display: flex; align-items: baseline; gap: 2px; }
.tv-plan-currency { font-size: 18px; font-weight: 700; color: var(--text); }
.tv-plan-value { font-size: 34px; font-weight: 800; letter-spacing: -.03em; color: var(--text); line-height: 1; }
.tv-plan-period { font-size: 13px; color: var(--text-muted); margin-left: 4px; }
.tv-plan-price-billed { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.tv-plan-cta { width: 100%; justify-content: center; margin-top: auto; }

/* Features */
.tv-plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; font-size: 15px; color: var(--text); line-height: 1.4; }
.tv-plan-features li { display: flex; align-items: center; gap: 1px; }
.tv-plan-features strong { font-weight: 700; }
.tv-plan-feature--off { color: var(--text-muted); opacity: .6; }

.tv-plans-note { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 36px; font-size: 14px; color: var(--text-muted); }
.tv-plans-note svg { color: var(--green); flex-shrink: 0; }
.tv-plans-note a { color: var(--green); font-weight: 700; text-decoration: none; }
.tv-plans-note a:hover { text-decoration: underline; }

/* Use cases */
.tv-usecases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tv-usecase { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 26px 24px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.tv-usecase:hover { border-color: var(--green); box-shadow: 0 14px 32px rgba(15,30,27,.06); transform: translateY(-2px); }
.tv-usecase-icon { width: 48px; height: 48px; border-radius: 12px; color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.tv-usecase-icon svg { width: 22px; height: 22px; }
.tv-usecase h3 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; color: var(--text); margin-bottom: 6px; }
.tv-usecase p { font-size: 17px; color: var(--text-muted); line-height: 1.55; }

/* Como funciona */
.tv-how { background: var(--bg-soft); }
.tv-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tv-how-step { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 28px 26px; position: relative; }
.tv-how-num { display: inline-block; font-size: 40px; font-weight: 800; line-height: 1; color: var(--green-light); letter-spacing: -.02em; margin-bottom: 10px; }
.tv-how-step h3 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; color: var(--text); margin-bottom: 8px; }
.tv-how-step p { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; }

/* FAQ - reuses existing .ct-faq-list/.ct-faq-item */

/* Responsivo */
@media (max-width: 1100px) {
  .tv-plans-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 992px) {
  .tv-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .tv-features-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-how-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Hero TV: reduz padding top (era +80 do nav, agora +24) */
  .tv-hero { padding: calc(var(--nav-h) + 30px) 0 56px; }
  .tv-features-grid { grid-template-columns: 1fr; }
  .tv-usecases-grid { grid-template-columns: 1fr; }
  .tv-plans-grid { grid-template-columns: 1fr; }
  /* Trust pill: row + wrap (não column) - mais natural */
  .tv-hero-trust { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: flex-start; row-gap: 8px; column-gap: 14px; padding: 12px 14px; font-size: 13px; max-width: 100%; }
  .tv-hero-trust > span { display: inline-flex; align-items: center; gap: 4px; }
  .tv-hero-trust-sep { display: inline-block; width: 4px; height: 4px; }
  .tv-multi-dests { grid-template-columns: repeat(2, 1fr); }
  /* Encoder mockup: stack + mais respiro pra não ficar colado */
  .tv-encoder-body { grid-template-columns: 1fr; gap: 14px; padding: 14px; }
  .tv-encoder-preview { max-width: 100%; margin: 0 auto; aspect-ratio: 16/9; min-height: 180px; }
  /* Mobile: esconde FPS (3º) e CODEC (4º) pra deixar o mockup mais compacto */
  .tv-encoder-stat:nth-child(3),
  .tv-encoder-stat:nth-child(4) { display: none; }
  .tv-encoder-preview svg { width: 64px !important; height: 64px !important; opacity: .85; }
  .tv-encoder-title { font-size: 10.5px; }
  .tv-encoder-titlebar { padding: 8px 10px; gap: 8px; }
  .tv-encoder-stats { gap: 10px; }
  .tv-encoder-stat { padding: 8px 10px; }
  .tv-encoder-live { top: 12px; left: 12px; padding: 4px 9px; font-size: 10.5px; }
  .tv-encoder-res { bottom: 12px; right: 12px; padding: 3px 9px; font-size: 10.5px; }
  /* Plans note: wrap nos elementos pra não estourar */
  .tv-plans-note { flex-wrap: wrap; gap: 4px 6px; padding: 0 16px; text-align: center; line-height: 1.45; font-size: 13.5px; }
  /* Mobile: desabilita stroke-dashoffset animation que flica em Android Chrome.
     Paths viram tracejado estático — preserva o visual de "fluxo de dados" sem o custo de repaint por frame. */
  .tv-multi-flow svg path { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .tv-multi-flow svg path,
  .tv-encoder-vu span,
  .tv-live-dot,
  .tv-encoder-rec-dot,
  .tv-encoder-live-dot { animation: none !important; }
}

@media (max-width: 540px) {
  .tv-hero-trust { flex-direction: column; align-items: flex-start; row-gap: 6px; padding: 12px 14px; }
  .tv-hero-trust-sep { display: none; }
  .tv-hero-trust > span { width: 100%; }
}
