/* Industry-page section styles (the bits that aren't inline). Most layout is inline
   in single-acb_industry.php; this handles interactive states + responsiveness. */

@keyframes rsFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.rs-cta { transition: transform .15s ease, filter .15s ease, box-shadow .15s ease; }
.rs-cta:hover { transform: translateY(-2px); filter: brightness(1.06); }

/* Generic tab-group panels: hidden unless active */
.rs-tab-group .rs-panel { display: none; }
.rs-tab-group .rs-panel.is-active { display: block; animation: rsFade .3s ease; }

/* Accordion mode (mobile): JS moves each panel directly under its tab, so the open
   panel sits right beneath the header you tapped. Group becomes a simple vertical stack. */
.rs-tab-group.rs-accordion { display: block !important; }
.rs-tab-group.rs-accordion [data-rs-panel] { margin: 10px 0 16px; }
.rs-tab-group.rs-accordion [data-rs-tab].is-active { box-shadow: 0 8px 22px rgba(20,43,73,0.10); }
/* who-benefits in accordion mode: the panel wrapper is now empty (panels moved under each pill) —
   hide it, and give the moved panels their own card styling so it doesn't look broken. */
.rs-aud-grid.rs-accordion > div:first-child { display: none !important; }
.rs-aud-grid.rs-accordion .rs-aud-panel.is-active { background: #F4F9FE; border: 1px solid #E4EEF8; border-radius: 16px; padding: 20px; margin: 2px 0 10px; }

/* Use-case rail tabs */
.rs-uc-tab { cursor: pointer; width: 100%; display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 16px; transition: all .15s; border: 1px solid transparent; background: transparent; }
.rs-uc-tab:hover { background: #fff; }
.rs-uc-tab.is-active { border-color: #E7F0F8; background: #fff; box-shadow: 0 10px 30px rgba(20,43,73,0.10); }
.rs-uc-tab .rs-uc-ico { width: 44px; height: 44px; border-radius: 12px; flex: none; display: inline-flex; align-items: center; justify-content: center; transition: all .15s; }
.rs-uc-tab.is-active .rs-uc-ico { color: #fff !important; }
.rs-uc-tab.is-active .rs-uc-ico svg { stroke: #fff !important; }

/* Who-benefits detail panels (flex layout when active) */
.rs-tab-group .rs-aud-panel { display: none; }
.rs-tab-group .rs-aud-panel.is-active { display: flex; flex-direction: column; gap: 24px; justify-content: center; animation: rsFade .3s ease; }

/* Who-benefits pills */
.rs-aud-chip { cursor: pointer; width: 100%; text-align: left; font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 15px; padding: 14px 18px; border-radius: 14px; transition: all .15s; border: 1.5px solid #E1EAF3; background: #fff; color: #44586F; }
.rs-aud-chip.is-active { color: #fff; background: var(--c, #109CF1); border-color: var(--c, #109CF1); }

.fp-pill { transition: all .15s; }
.fp-pill:hover { border-color: #109CF1 !important; color: #109CF1 !important; }

/* Inbox demo (feature page) */
.fp-inbox .fp-thread { display: none; }
.fp-inbox .fp-thread.is-active { display: flex; flex-direction: column; min-height: 560px; animation: rsFade .3s ease; }
.fp-inbox .fp-convo { cursor: pointer; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 14px 14px; border: none; border-bottom: 1px solid #F0F4F8; background: transparent; transition: background .12s; text-align: left; }
.fp-inbox .fp-convo:hover { background: #F6FAFE; }
.fp-inbox .fp-convo .fp-convo-name { font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 16px; color: #44586F; }
.fp-inbox .fp-convo.is-active { background: #EAF6FF; }
.fp-inbox .fp-convo.is-active .fp-convo-name { font-weight: 700; color: #109CF1; }

/* Industry app chips */
.rs-app-chip { cursor: pointer; display: inline-flex; align-items: center; gap: 9px; background: #fff; border-radius: 12px; padding: 8px 15px 8px 8px; font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 14px; color: #44586F; transition: all .15s; border: 1.5px solid #E6EDF5; }

/* Feature tabs reuse the .ts-features module classes/JS; nothing extra needed. */

/* Merge-tag dropdown */
.rs-merge { position: relative; display: inline-block; vertical-align: middle; }
.rs-merge-toggle { cursor: pointer; border: 1px solid #D6E6F6; display: inline-flex; align-items: center; gap: 6px; background: #F1F6FB; color: #0B6FB8; padding: 4px 10px; border-radius: 8px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px; }
.rs-merge-toggle:hover { background: #E2EEFA; }
.rs-merge-pop { display: none; position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%); width: 340px; background: #fff; border: 1px solid #E4EEF8; border-radius: 16px; box-shadow: 0 24px 56px rgba(20,43,73,0.2); padding: 14px; z-index: 40; text-align: left; }
.rs-merge-pop.open { display: block; animation: rsFade .2s ease; }

@media (max-width: 920px) {
  .rs-hero__grid, .rs-split, .rs-uc-grid, .rs-aud-grid, .rs-mms-grid, .rs-lg-grid, .rs-ttj-grid { grid-template-columns: 1fr !important; }
  .rs-stats__grid { grid-template-columns: 1fr 1fr !important; }
  .rs-hero h1 { font-size: 40px !important; }
  /* who-benefits: put the audience pills on top and the active-audience panel below them, so
     tapping a pill updates content you can actually see (not a panel above the pills). */
  .rs-aud-grid > div:nth-child(1) { order: 2; min-height: 0; }
  .rs-aud-grid > div:nth-child(2) { order: 1; }
}

/* ---------- ts-icon-cards module (used on every industry + feature page) ---------- */
.ts-iconcards { padding: 80px 40px; background: linear-gradient(180deg, #ffffff 0%, #F4F9FE 18%, #F4F9FE 82%, #ffffff 100%); }
.ts-iconcards__wrap { max-width: var(--ts-content); margin: 0 auto; }
.ts-iconcards__head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.ts-iconcards__title { font-family: var(--ts-display); font-weight: 800; font-size: 38px; letter-spacing: -0.025em; color: var(--ts-ink); margin: 12px 0 14px; }
.ts-iconcards__sub { font-size: 17px; line-height: 1.6; color: var(--ts-text); margin: 0; }
.ts-iconcards__grid { display: grid; gap: 20px; }
.ts-iconcards__grid--3up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ts-iconcards__grid--auto { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.ts-iconcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--ts-line); border-radius: var(--ts-r-lg); padding: 28px; text-decoration: none; }
.ts-iconcard__icon { width: 46px; height: 46px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; background: var(--ic-color-bg); color: var(--ic-color); margin-bottom: 16px; }
.ts-iconcard__cardtitle { font-family: var(--ts-display); font-weight: 800; font-size: 19px; color: var(--ts-ink); margin: 0 0 8px; }
.ts-iconcard__desc { font-size: 15px; line-height: 1.6; color: var(--ts-text-2); margin: 0; }
.ts-iconcard__more { margin-top: auto; padding-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--ic-color); }


/* ---------- ts-cta module (final CTA band; every industry + feature page) ---------- */
.ts-finalcta { padding: 0 40px 90px; background: #fff; }
.ts-finalcta__card { max-width: var(--ts-content); margin: 0 auto; position: relative; overflow: hidden; background: linear-gradient(135deg, #109CF1 0%, #0B7FCC 60%, #7B61FF 130%); border-radius: 32px; padding: 70px 50px; text-align: center; }
.ts-finalcta__dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px); background-size: 22px 22px; }
.ts-finalcta__body { position: relative; }
.ts-finalcta__title { font-family: var(--ts-display); font-weight: 800; font-size: 46px; line-height: 1.05; letter-spacing: -0.03em; color: #fff; margin: 0 0 16px; }
.ts-finalcta__sub { font-size: 19px; color: rgba(255,255,255,0.85); margin: 0 auto 32px; max-width: 540px; }
.ts-finalcta__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.ts-finalcta__primary { display: inline-flex; align-items: center; gap: 9px; padding: 17px 30px; background: #fff; color: var(--ts-blue-600); border-radius: 12px; font-size: 17px; font-weight: 800; box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
.ts-finalcta__secondary { display: inline-flex; align-items: center; padding: 17px 26px; background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.3); border-radius: 12px; font-size: 17px; font-weight: 600; }

/* ---------- ts-feature-hero module (2-way-messaging hero: inbox app + floating phone) ---------- */
.fp-hero { position: relative; overflow: hidden; padding: 64px 40px 88px; }
.fp-hero__grid { max-width: var(--ts-content); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.08fr; gap: 52px; align-items: center; }
.fp-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #CDE7FA; padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--ts-blue-600); }
.fp-hero__title { font-family: var(--ts-display); font-weight: 900; font-size: 54px; line-height: 1.04; letter-spacing: -0.03em; margin: 22px 0 0; color: var(--ts-ink); }
.fp-hero__sub { font-size: 19px; line-height: 1.55; color: var(--ts-text); max-width: 500px; margin: 22px 0 0; }
.fp-hero__actions { display: flex; align-items: center; gap: 14px; margin: 30px 0 0; flex-wrap: wrap; }
.fp-hero__cta1 { display: inline-flex; align-items: center; gap: 9px; padding: 16px 26px; background: var(--ts-blue); color: #fff; border-radius: 12px; font-size: 17px; font-weight: 700; box-shadow: 0 12px 26px rgba(16,156,241,0.4); }
.fp-hero__cta2 { display: inline-flex; align-items: center; padding: 16px 22px; background: #fff; color: var(--ts-ink); border: 1px solid var(--ts-line-2); border-radius: 12px; font-size: 17px; font-weight: 600; }
.fp-hero__trust { font-size: 14px; color: #9A8568; margin: 18px 0 0; display: flex; align-items: center; gap: 8px; }
.fp-hero__demo { position: relative; }
.fp-hero__app { background: #fff; border-radius: 16px; box-shadow: 0 30px 70px rgba(20,43,73,0.22); overflow: hidden; border: 1px solid var(--ts-line); }
.fp-hero__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #F4F8FC; border-bottom: 1px solid #EEF3F8; }
.fp-hero__dot { width: 11px; height: 11px; border-radius: 50%; }
.fp-hero__dot--r { background: #FF6058; } .fp-hero__dot--y { background: #FEBC2E; } .fp-hero__dot--g { background: #28C840; }
.fp-hero__url { margin-left: 10px; font-size: 11px; color: #8DA0B8; font-weight: 700; font-family: 'Nunito'; /* bare, matching original inline */ }
.fp-hero__appgrid { display: grid; grid-template-columns: 168px minmax(0, 1fr); min-height: 332px; }
.fp-hero__sidebar { border-right: 1px solid #EFF4F9; padding: 12px 10px; background: #FAFCFE; }
.fp-hero__inboxlabel { font-family: var(--ts-display); font-weight: 800; font-size: 13px; color: var(--ts-ink); padding: 4px 6px 10px; }
.fp-hero__inboxlabel span { color: #8DA0B8; font-weight: 700; }
.fp-hero__convolist { display: flex; flex-direction: column; gap: 4px; font-family: 'Nunito'; }
.fp-hero__convo { display: flex; gap: 9px; align-items: flex-start; padding: 9px 9px; border-radius: 10px; }
.fp-hero__convo--on { background: #fff; border: 1px solid #E1EAF3; box-shadow: 0 6px 14px rgba(20,43,73,0.07); }
.fp-hero__cavatar { width: 30px; height: 30px; border-radius: 50%; flex: none; color: #fff; font-weight: 800; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.fp-hero__cmeta { min-width: 0; }
.fp-hero__cname { font-weight: 800; font-size: 12px; color: var(--ts-ink); }
.fp-hero__cpreview { font-size: 11px; color: #8DA0B8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fp-hero__threadcol { display: flex; flex-direction: column; font-family: 'Nunito'; }
.fp-hero__threadhead { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid #EFF4F9; }
.fp-hero__tavatar { width: 32px; height: 32px; border-radius: 50%; background: var(--ts-blue); color: #fff; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.fp-hero__tmeta { flex: 1; }
.fp-hero__tname { font-weight: 800; font-size: 13px; color: var(--ts-ink); }
.fp-hero__tphone { font-size: 10px; color: #8DA0B8; font-weight: 700; }
.fp-hero__assigned { font-size: 10px; font-weight: 800; color: var(--ts-blue-600); background: var(--ts-tint-blue); padding: 4px 9px; border-radius: 999px; }
.fp-hero__thread { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 8px; background: #fff; }
.fp-hero__msg-in { align-self: flex-start; max-width: 76%; background: #EEF1F4; color: var(--ts-ink-soft); font-size: 12px; padding: 9px 12px; border-radius: 14px 14px 14px 4px; }
.fp-hero__msg-out { align-self: flex-end; max-width: 76%; background: var(--ts-blue); color: #fff; font-size: 12px; padding: 9px 12px; border-radius: 14px 14px 4px 14px; }
.fp-hero__composer { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-top: 1px solid #EFF4F9; }
.fp-hero__type { flex: 1; height: 32px; background: #F4F8FC; border-radius: 999px; display: flex; align-items: center; padding: 0 13px; font-size: 12px; color: var(--ts-placeholder); }
.fp-hero__sendbtn { width: 32px; height: 32px; border-radius: 50%; background: var(--ts-blue); display: flex; align-items: center; justify-content: center; flex: none; }
.fp-hero-phone { position: absolute; bottom: -52px; right: -20px; width: 186px; background: #0F1F33; border-radius: 38px; padding: 6px; box-shadow: 0 26px 58px rgba(20,43,73,0.32); animation: tsFloat 6s ease-in-out infinite; }
.fp-hero-phone__screen { position: relative; width: 174px; height: 377px; background: #fff; border-radius: 32px; overflow: hidden; font-family: 'Nunito'; display: flex; flex-direction: column; }
.fp-hero-phone__notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 70px; height: 19px; background: #0F1F33; border-radius: 999px; z-index: 3; }
.fp-hero-phone__contact { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 30px 12px 11px; border-bottom: 1px solid #EFF3F1; }
.fp-hero-phone__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#FF8A5B,#FF7A4D); color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.fp-hero-phone__biz { font-weight: 800; font-size: 12px; color: var(--ts-ink); }
.fp-hero-phone__badge { font-size: 9px; color: #14A06A; font-weight: 700; }
.fp-hero-phone__thread { flex: 1; min-height: 0; overflow: hidden; padding: 12px 11px; display: flex; flex-direction: column; gap: 7px; background: #fff; }
.fp-hero-phone__time { align-self: center; font-size: 9px; color: var(--ts-placeholder); font-weight: 700; }
.fp-hero-phone__in { align-self: flex-start; max-width: 90%; background: #EEF1F4; color: var(--ts-ink-soft); font-size: 11px; line-height: 1.4; padding: 8px 11px; border-radius: 14px 14px 14px 4px; }
.fp-hero-phone__out { align-self: flex-end; max-width: 88%; background: #34C759; color: #fff; font-size: 11px; line-height: 1.4; padding: 8px 11px; border-radius: 14px 14px 4px 14px; }
.fp-hero-phone__homebar { width: 84px; height: 4px; background: #0F1F33; border-radius: 999px; margin: 0 auto 9px; opacity: .85; }

/* ---------- ts-link-hero module (link-tracking hero + live shortener demo) ---------- */
.lh-hero { position: relative; overflow: hidden; padding: 64px 40px 88px; }
.lh-grid { max-width: var(--ts-content); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: center; }
.lh-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #CDE7FA; padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--ts-blue-600); }
.lh-hero__title { font-family: var(--ts-display); font-weight: 900; font-size: 54px; line-height: 1.04; letter-spacing: -0.03em; margin: 22px 0 0; color: var(--ts-ink); }
.lh-hero__sub { font-size: 19px; line-height: 1.55; color: var(--ts-text); max-width: 500px; margin: 22px 0 0; }
.lh-hero__actions { display: flex; align-items: center; gap: 14px; margin: 30px 0 0; flex-wrap: wrap; }
.lh-hero__cta1 { display: inline-flex; align-items: center; gap: 9px; padding: 16px 26px; background: var(--ts-blue); color: #fff; border-radius: 12px; font-size: 17px; font-weight: 700; box-shadow: 0 12px 26px rgba(16,156,241,0.4); }
.lh-hero__cta2 { display: inline-flex; align-items: center; padding: 16px 22px; background: #fff; color: var(--ts-ink); border: 1px solid var(--ts-line-2); border-radius: 12px; font-size: 17px; font-weight: 600; }
.lh-hero__trust { font-size: 14px; color: var(--ts-text-2); margin: 18px 0 0; display: flex; align-items: center; gap: 8px; }
.lh-hero__demo { position: relative; }
.lh-card { background: #fff; border-radius: 18px; box-shadow: 0 30px 70px rgba(20,43,73,0.18); border: 1px solid var(--ts-line); overflow: hidden; }
.lh-card__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #F4F8FC; border-bottom: 1px solid #EEF3F8; }
.lh-card__dot { width: 11px; height: 11px; border-radius: 50%; }
.lh-card__dot--r { background: #FF6058; } .lh-card__dot--y { background: #FEBC2E; } .lh-card__dot--g { background: #28C840; }
.lh-card__url { margin-left: 10px; font-size: 11px; color: #8DA0B8; font-weight: 700; font-family: 'Nunito'; /* bare, matching original inline */ }
.lh-card__body { padding: 26px 24px 26px; }
.lh-card__title { font-family: var(--ts-display); font-weight: 800; font-size: 18px; color: var(--ts-ink); }
.lh-card__note { font-size: 13px; color: #7C8DA4; line-height: 1.5; margin: 5px 0 16px; }
.lh-form { display: flex; gap: 8px; }
.lh-input { flex: 1; min-width: 0; font-family: 'Nunito'; font-size: 14px; color: var(--ts-ink-soft); border: 1.5px solid #E1E7EE; border-radius: 11px; padding: 12px 14px; background: #fff; }
.lh-input:focus { outline: none; border-color: var(--ts-blue); box-shadow: 0 0 0 3px rgba(16,156,241,.15); }
.lh-btn { flex: none; cursor: pointer; border: none; font-family: var(--ts-sans); font-weight: 700; font-size: 14px; color: #fff; background: var(--ts-blue); border-radius: 11px; padding: 0 18px; box-shadow: 0 8px 18px rgba(16,156,241,0.35); transition: filter .15s ease, transform .1s ease; }
.lh-btn:hover { filter: brightness(1.06); } .lh-btn:active { transform: translateY(1px); }
.lh-hint { display: none; font-size: 12px; color: #E0533A; font-weight: 600; margin-top: 8px; }
.lh-results { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.lh-empty { margin-top: 16px; display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ts-faint); }
.lh-row { border: 1px solid #E7EFF7; border-radius: 14px; padding: 13px 14px; background: #F8FBFE; animation: lhPop .25s ease both; }
.lh-row__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.lh-row__links { min-width: 0; }
.lh-row__short { font-family: 'Nunito'; font-weight: 800; font-size: 16px; color: var(--ts-blue-600); text-decoration: none; cursor: pointer; }
.lh-row__orig { font-size: 11px; color: var(--ts-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 340px; }
.lh-row__stats { display: flex; align-items: center; gap: 6px; margin-top: 9px; font-size: 12px; color: #0E9E90; font-weight: 700; }
.lh-row__pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--ts-teal); animation: lhPulse 1.6s ease-in-out infinite; }
@keyframes lhPop { from { opacity: 0; transform: translateY(8px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes lhPulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@media (max-width: 900px) {
  .lh-grid { grid-template-columns: 1fr !important; }
  .lh-card { max-width: 460px; }
}

/* ---------- ts-inbox-demo module (interactive inbox; 2-way-messaging page) ---------- */
.fp-inbox { padding: 80px 40px; background: #fff; }
.fp-inbox__wrap { max-width: var(--ts-content); margin: 0 auto; }
.fp-inbox__head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.fp-inbox__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ts-blue); }
.fp-inbox__heading { font-family: var(--ts-display); font-weight: 800; font-size: 38px; letter-spacing: -0.025em; color: var(--ts-ink); margin: 12px 0 14px; }
.fp-inbox__sub { font-size: 17px; line-height: 1.55; color: var(--ts-text); margin: 0; }
.fp-inbox__app { background: #fff; border: 1px solid var(--ts-line); border-radius: 18px; box-shadow: 0 24px 60px rgba(20,43,73,0.10); overflow: hidden; display: grid; grid-template-columns: 326px 1fr; }
.fp-inbox__sidebar { border-right: 1px solid #EFF4F9; padding: 24px 22px; background: #fff; }
.fp-inbox__title { font-family: var(--ts-display); font-weight: 800; font-size: 19px; color: var(--ts-ink); margin-bottom: 18px; }
.fp-inbox__pills { display: flex; gap: 9px; margin-bottom: 16px; }
.fp-inbox__pill { font-family: 'Nunito'; font-weight: 800; font-size: 14px; color: var(--ts-blue); background: #fff; border: 1.5px solid #BFE0F7; padding: 8px 20px; border-radius: 999px; }
.fp-inbox__pill--on { color: #fff; background: var(--ts-blue); border: none; }
.fp-inbox__select { display: flex; align-items: center; justify-content: space-between; border: 1px solid #E1EAF3; border-radius: 10px; padding: 13px 15px; margin-bottom: 22px; font-family: 'Nunito'; font-size: 14px; color: var(--ts-placeholder); }
.fp-inbox__recent { font-family: var(--ts-display); font-weight: 800; font-size: 15px; color: var(--ts-ink); margin-bottom: 4px; }
.fp-inbox__convos { display: flex; flex-direction: column; }
.fp-convo__dots { display: inline-flex; flex-direction: column; gap: 2.5px; padding: 4px; margin-left: auto; }
.fp-convo__dots span { width: 3px; height: 3px; border-radius: 50%; background: #C2CEDC; }
.fp-inbox__main { position: relative; }
.fp-thread__head { display: flex; align-items: center; gap: 15px; padding: 21px 26px; border-bottom: 1px solid #EFF4F9; }
.fp-thread__name { font-family: var(--ts-display); font-weight: 800; font-size: 19px; color: var(--ts-ink); }
.fp-thread__sep { width: 1px; height: 21px; background: #D9E2EC; }
.fp-thread__phone { font-family: 'Nunito'; font-weight: 700; font-size: 15px; color: #44586F; }
.fp-thread__body { flex: 1; padding: 24px 26px; display: flex; flex-direction: column; gap: 16px; font-family: 'Nunito'; background: #fff; }
.fp-thread__msg { display: flex; flex-direction: column; gap: 7px; align-items: flex-start; }
.fp-thread__msg--out { align-items: flex-end; }
.fp-thread__meta { font-size: 12px; font-weight: 700; color: var(--ts-placeholder); }
.fp-thread__bubble { max-width: 72%; font-size: 15px; line-height: 1.5; padding: 11px 16px; background: #EEF1F4; color: var(--ts-ink-soft); border-radius: 16px 16px 16px 4px; }
.fp-thread__msg--out .fp-thread__bubble { background: var(--ts-blue); color: #fff; border-radius: 16px 16px 4px 16px; }
.fp-thread__composer { margin: 0 24px 20px; border: 1px solid #E1EAF3; border-radius: 12px; padding: 16px 16px 13px; }
.fp-thread__placeholder { font-family: 'Nunito'; font-size: 15px; color: var(--ts-placeholder); min-height: 42px; }
.fp-thread__actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.fp-thread__sendnow { display: flex; align-items: center; gap: 9px; border: 1px solid #E1EAF3; border-radius: 8px; padding: 9px 14px; font-family: 'Nunito'; font-weight: 700; font-size: 14px; color: #44586F; }
.fp-thread__send { background: #FF8A33; color: #fff; font-family: 'Nunito'; font-weight: 800; font-size: 14px; letter-spacing: 0.07em; border-radius: 8px; padding: 11px 28px; }
.fp-inbox__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.fp-inbox__card { background: #FAFCFE; border: 1px solid #ECF2F8; border-radius: 18px; padding: 24px; }
.fp-inbox__card h3 { font-family: var(--ts-display); font-weight: 800; font-size: 17px; color: var(--ts-ink); margin: 0 0 7px; }
.fp-inbox__card p { font-size: 14px; line-height: 1.55; color: var(--ts-text-2); margin: 0 0 16px; }
.fp-inbox__free { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid #E1EAF3; border-radius: 999px; padding: 6px 11px; font-family: 'Nunito'; font-size: 11px; font-weight: 800; color: #14A06A; }
.fp-inbox__free span { width: 8px; height: 8px; border-radius: 50%; background: #14A06A; }
.fp-inbox__templates { display: flex; flex-direction: column; gap: 5px; font-family: 'Nunito'; }
.fp-inbox__templates div { font-size: 11px; background: #fff; border: 1px solid #E1EAF3; border-radius: 8px; padding: 7px 10px; color: var(--ts-ink-soft); }
.fp-inbox__tags { display: flex; flex-wrap: wrap; gap: 6px; font-family: 'Nunito'; }
.fp-inbox__tags span { font-size: 11px; font-weight: 700; padding: 5px 9px; border-radius: 6px; }
.fp-inbox__tag--blue { background: var(--ts-tint-blue); color: var(--ts-blue-600); }
.fp-inbox__tag--teal { background: #E5F8F5; color: #0E6B5E; }
.fp-inbox__tag--warm { background: var(--ts-tint-warm); color: #B5430F; }

/* ---------- ts-mms module (MMS phone card + bullets; restaurants) ---------- */
.rs-mms { padding: 80px 40px; background: #F4F9FE; }
.rs-mms-grid { max-width: var(--ts-content); margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.rs-mms__phone-col { display: flex; justify-content: center; }
.rs-mms__card { width: 100%; max-width: 320px; background: #fff; border-radius: 22px; box-shadow: 0 24px 56px rgba(20,43,73,0.14); padding: 18px; font-family: 'Nunito'; /* bare, matching original inline */ }
.rs-mms__contact { display: flex; align-items: center; gap: 9px; padding-bottom: 12px; border-bottom: 1px solid #EFF4F9; margin-bottom: 14px; }
.rs-mms__avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,#FF8A5B,#FF7A4D); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.rs-mms__biz { font-weight: 800; font-size: 13px; color: var(--ts-ink); }
.rs-mms__verified { font-size: 11px; color: #14A06A; font-weight: 700; }
.rs-mms__thread { display: flex; flex-direction: column; gap: 10px; }
.rs-mms__msg { align-self: flex-start; max-width: 92%; background: #EEF1F4; border-radius: 16px 16px 16px 5px; overflow: hidden; }
.rs-mms__photo { width: 100%; height: 150px; object-fit: cover; display: block; }
.rs-mms__tile { width: 100%; height: 150px; background: linear-gradient(135deg,#FFB489,#FF7A4D); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.rs-mms__caption { padding: 10px 13px; font-size: 13px; line-height: 1.45; color: var(--ts-ink-soft); }
.rs-mms__reward { align-self: flex-start; max-width: 92%; background: var(--ts-tint-warm); border-radius: 16px; padding: 13px; text-align: center; }
.rs-mms__reward-title { font-size: 12px; font-weight: 800; color: #B5430F; margin-bottom: 9px; }
.rs-mms__reward-code { font-family: var(--ts-display); font-weight: 800; font-size: 13px; letter-spacing: 0.12em; color: var(--ts-ink); margin-top: 8px; }
.rs-mms__reward-note { font-size: 11px; color: #8DA0B8; font-weight: 700; margin-top: 2px; }
.rs-mms__delivered { align-self: flex-end; font-size: 11px; color: var(--ts-placeholder); font-weight: 700; }
.rs-mms__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ts-orange); }
.rs-mms__heading { font-family: var(--ts-display); font-weight: 800; font-size: 36px; line-height: 1.12; letter-spacing: -0.025em; color: var(--ts-ink); margin: 12px 0 14px; }
.rs-mms__sub { font-size: 17px; line-height: 1.55; color: var(--ts-text); margin: 0 0 24px; }
.rs-mms__bullets { display: flex; flex-direction: column; gap: 13px; }
.rs-mms__bullet { display: flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 600; color: var(--ts-ink-soft); }
.rs-mms__check { width: 24px; height: 24px; border-radius: 50%; flex: none; display: inline-flex; align-items: center; justify-content: center; background: #FF7A4D1f; }

/* ---------- ts-app-recipes module (integration recipes; restaurants) ---------- */
.rs-apprecipes { padding: 80px 40px; background: #fff; }
.rs-apprecipes__wrap { max-width: var(--ts-content); margin: 0 auto; }
.rs-apprecipes__head { text-align: center; max-width: 720px; margin: 0 auto 30px; }
.rs-apprecipes__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ts-teal); }
.rs-apprecipes__heading { font-family: var(--ts-display); font-weight: 800; font-size: 38px; line-height: 1.1; letter-spacing: -0.025em; color: var(--ts-ink); margin: 12px 0 14px; }
.rs-apprecipes__sub { font-size: 17px; color: var(--ts-text); line-height: 1.55; margin: 0; }
.rs-apprecipes__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.rs-app-chip__mono { width: 30px; height: 30px; border-radius: 8px; flex: none; display: inline-flex; align-items: center; justify-content: center; font-family: var(--ts-display); font-weight: 800; font-size: 12px; }
.rs-apprecipes__panelbox { background: #FAFCFE; border: 1px solid #ECF2F8; border-radius: 24px; padding: 36px; box-shadow: 0 18px 44px rgba(20,43,73,0.07); }
.rs-apprecipes__flow { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 460px; margin: 0 auto 26px; }
.rs-apprecipes__end { display: flex; flex-direction: column; align-items: center; gap: 9px; width: 120px; }
.rs-apprecipes__appicon { width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--ts-display); font-weight: 800; font-size: 20px; box-shadow: 0 6px 16px rgba(20,43,73,0.08); }
.rs-apprecipes__appname { font-size: 13px; font-weight: 700; color: var(--ts-text-2); text-align: center; }
.rs-apprecipes__connector { flex: 1; display: flex; align-items: center; padding-bottom: 24px; }
.rs-apprecipes__line { position: relative; flex: 1; height: 3px; border-radius: 999px; }
.rs-apprecipes__line svg { position: absolute; right: -8px; top: 50%; transform: translateY(-50%); }
.rs-apprecipes__tsicon { width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: #fff; box-shadow: 0 6px 16px rgba(20,43,73,0.08); border: 1px solid #E6EDF5; }
.rs-apprecipes__tsicon img { width: 30px; height: 30px; }
.rs-apprecipes__recipe { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 11px; }
.rs-apprecipes__step { display: flex; align-items: flex-start; gap: 10px; }
.rs-apprecipes__tag { flex: none; font-size: 10px; font-weight: 800; letter-spacing: 0.05em; color: #fff; padding: 4px 9px; border-radius: 5px; margin-top: 1px; }
.rs-apprecipes__tag--when { background: #9DB0C5; }
.rs-apprecipes__tag--then { background: var(--ts-teal); }
.rs-apprecipes__steptext { font-size: 15px; color: var(--ts-ink-soft); font-weight: 600; line-height: 1.45; }
.rs-apprecipes__samplewrap { max-width: 560px; margin: 20px auto 0; }
.rs-apprecipes__sample { color: #fff; font-size: 14px; line-height: 1.5; padding: 13px 16px; border-radius: 16px 16px 16px 5px; }
.rs-apprecipes__footnote { text-align: center; font-size: 14px; color: #7C8DA4; margin: 22px 0 0; }

/* ---------- ts-audiences module (icon audience grid; home) ---------- */
.ts-audiences { padding: 84px 40px; background: #fff; }
.ts-aud__wrap { max-width: var(--ts-content); margin: 0 auto; }
.ts-aud__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.ts-aud__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ts-purple); }
.ts-aud__heading { font-family: var(--ts-display); font-weight: 800; font-size: 42px; letter-spacing: -0.025em; color: var(--ts-ink); margin: 12px 0 14px; }
.ts-aud__sub { font-size: 18px; color: var(--ts-text); line-height: 1.55; margin: 0; }
.ts-aud__grid { display: grid; gap: 18px; }
.ts-aud__card { text-align: center; padding: 12px; }
.ts-aud__icon { width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.ts-aud__title { font-family: var(--ts-display); font-weight: 700; font-size: 18px; color: var(--ts-ink); margin: 0 0 7px; }
.ts-aud__desc { font-size: 14px; line-height: 1.5; color: var(--ts-text-2); margin: 0; }

/* ---------- ts-text-to-join module (keyword demo band; industry pages) ---------- */
.rs-ttj { padding: 80px 40px; background: #fff; }
.rs-ttj-grid { max-width: var(--ts-content); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; background: linear-gradient(135deg, #142B49, #0B2D4D); border-radius: 28px; padding: 48px; overflow: hidden; position: relative; }
.rs-ttj__dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 22px 22px; }
.rs-ttj__copy { position: relative; }
.rs-ttj__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #5FC4FF; }
.rs-ttj__heading { font-family: var(--ts-display); font-weight: 800; font-size: 32px; line-height: 1.15; letter-spacing: -0.02em; color: #fff; margin: 12px 0 14px; }
.rs-ttj__sub { font-size: 17px; line-height: 1.6; color: #B7C6DA; margin: 0; }
.rs-ttj__card { position: relative; background: #fff; border-radius: 20px; padding: 24px; text-align: center; font-family: 'Nunito'; /* bare, matching original inline */ }
.rs-ttj__label { font-size: 12px; font-weight: 800; color: #8DA0B8; text-transform: uppercase; letter-spacing: 0.06em; }
.rs-ttj__keyword { font-family: var(--ts-display); font-weight: 900; font-size: 30px; color: var(--ts-ink); margin: 8px 0; }
.rs-ttj__to { font-size: 13px; color: var(--ts-text-2); margin-bottom: 16px; }
.rs-ttj__to b { color: var(--ts-ink); }
.rs-ttj__welcome { background: #E5F8F5; color: #0E6B5E; font-size: 13px; line-height: 1.5; padding: 12px 14px; border-radius: 13px 13px 13px 4px; text-align: left; }
.rs-ttj__confirm { margin-top: 12px; font-size: 12px; font-weight: 800; color: #14A06A; }

/* ---------- ts-list-growth module (grow-your-list + QR card; industry pages) ---------- */
.rs-listgrowth { padding: 80px 40px; background: #fff; }
.rs-lg-grid { max-width: var(--ts-content); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.rs-lg__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ts-teal); }
.rs-lg__heading { font-family: var(--ts-display); font-weight: 800; font-size: 36px; line-height: 1.12; letter-spacing: -0.025em; color: var(--ts-ink); margin: 12px 0 14px; }
.rs-lg__sub { font-size: 17px; line-height: 1.55; color: var(--ts-text); margin: 0 0 26px; }
.rs-lg__methods { display: flex; flex-direction: column; gap: 18px; }
.rs-lg__method { display: flex; align-items: flex-start; gap: 14px; }
.rs-lg__ico { width: 42px; height: 42px; border-radius: 12px; flex: none; display: inline-flex; align-items: center; justify-content: center; }
.rs-lg__mtitle { font-weight: 700; font-size: 16px; color: var(--ts-ink); }
.rs-lg__mdesc { font-size: 14px; color: var(--ts-text-2); line-height: 1.5; }
.rs-lg__visual { display: flex; justify-content: center; }
.rs-lg__qrcard { width: 300px; background: #fff; border: 1px solid var(--ts-line); border-radius: 20px; box-shadow: 0 24px 56px rgba(20,43,73,0.13); padding: 30px 26px; text-align: center; font-family: 'Nunito'; /* bare, matching original inline */ }
.rs-lg__qrlabel { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ts-teal); }
.rs-lg__qrtitle { font-family: var(--ts-display); font-weight: 800; font-size: 19px; color: var(--ts-ink); margin: 8px 0 18px; line-height: 1.25; }
.rs-lg__qrframe { display: inline-flex; padding: 16px; background: #fff; border: 1px solid #EEF3F8; border-radius: 16px; box-shadow: 0 8px 20px rgba(20,43,73,0.06); }
.rs-lg__qr { width: 150px; height: 150px; background-image: linear-gradient(45deg,#142B49 25%,transparent 25%,transparent 75%,#142B49 75%),linear-gradient(45deg,#142B49 25%,transparent 25%,transparent 75%,#142B49 75%); background-size: 20px 20px; background-position: 0 0, 10px 10px; border-radius: 4px; }
.rs-lg__qrnote { font-size: 13px; color: var(--ts-text-2); margin-top: 16px; }

/* ---------- ts-channel-table module (channel comparison; industry pages) ---------- */
.rs-channel { padding: 80px 40px; background: #F4F9FE; }
.rs-channel__wrap { max-width: var(--ts-content-narrow); margin: 0 auto; }
.rs-channel__heading { font-family: var(--ts-display); font-weight: 800; font-size: 34px; letter-spacing: -0.025em; color: var(--ts-ink); text-align: center; margin: 0 0 8px; }
.rs-channel__sub { font-size: 17px; color: var(--ts-text); text-align: center; margin: 0 0 36px; }
.rs-channel__table { background: #fff; border-radius: 20px; box-shadow: 0 20px 50px rgba(20,43,73,0.08); overflow: hidden; border: 1px solid #ECF2F8; }
.rs-channel__thead { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr 1.6fr; background: var(--ts-ink); color: #fff; font-family: var(--ts-display); font-weight: 700; font-size: 13px; }
.rs-channel__th { padding: 16px 20px; }
.rs-channel__th--c { padding: 16px 14px; text-align: center; }
.rs-channel__row { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr 1.6fr; align-items: center; }
.rs-channel__row--hl { background: #EAF6FF; }
.rs-channel__row--divided { border-bottom: 1px solid #EEF3F1; }
.rs-channel__name { padding: 18px 20px; display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ts-text-2); }
.rs-channel__name img { width: 24px; height: 24px; }
.rs-channel__open { padding: 18px 14px; text-align: center; font-family: var(--ts-display); font-weight: 800; font-size: 18px; color: var(--ts-faint); }
.rs-channel__time { padding: 18px 14px; text-align: center; color: #8DA0B8; }
.rs-channel__best { padding: 18px 20px; font-size: 14px; color: #8DA0B8; }
.rs-channel__row--hl .rs-channel__name { font-weight: 800; color: var(--ts-ink); }
.rs-channel__row--hl .rs-channel__open { font-size: 20px; color: var(--ts-blue); }
.rs-channel__row--hl .rs-channel__time { font-weight: 700; color: var(--ts-ink); }
.rs-channel__row--hl .rs-channel__best { color: #44586F; }

/* ---------- ts-guide-list module (numbered dark buyer's-guide grid; feature page) ---------- */
.ts-guide { padding: 84px 40px; background: var(--ts-ink); }
.ts-guide__wrap { max-width: var(--ts-content); margin: 0 auto; }
.ts-guide__head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.ts-guide__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6FB6E8; }
.ts-guide__heading { font-family: var(--ts-display); font-weight: 800; font-size: 38px; letter-spacing: -0.025em; color: #fff; margin: 12px 0 14px; }
.ts-guide__sub { font-size: 17px; line-height: 1.6; color: #B7C6DA; margin: 0; }
.ts-guide__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ts-guide__item { display: flex; gap: 18px; align-items: flex-start; background: #1B375A; border: 1px solid #284B73; border-radius: 16px; padding: 22px 24px; }
.ts-guide__num { flex: none; width: 40px; height: 40px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-family: var(--ts-display); font-weight: 800; font-size: 17px; }
.ts-guide__body { min-width: 0; }
.ts-guide__title { font-family: var(--ts-display); font-weight: 800; font-size: 18px; color: #fff; margin: 2px 0 6px; }
.ts-guide__desc { font-size: 14.5px; line-height: 1.6; color: #AFC0D6; margin: 0; }

/* ---------- ts-checklist-grid module (check-item grid; feature pages) ---------- */
.ts-checklist { padding: 80px 40px; background: #fff; }
.ts-checklist__wrap { max-width: var(--ts-content); margin: 0 auto; }
.ts-checklist__head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.ts-checklist__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ck-color); }
.ts-checklist__heading { font-family: var(--ts-display); font-weight: 800; font-size: 38px; letter-spacing: -0.025em; color: var(--ts-ink); margin: 12px 0 0; }
.ts-checklist__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 44px; }
.ts-checklist__item { display: flex; align-items: flex-start; gap: 13px; }
.ts-checklist__item > svg { flex: none; margin-top: 1px; }
.ts-checklist__title { font-weight: 700; font-size: 16px; color: var(--ts-ink); margin-bottom: 3px; }
.ts-checklist__desc { font-size: 14px; color: var(--ts-text-2); line-height: 1.5; }

/* ---------- ts-logos module (trust-bar logo cloud; home + pricing) ---------- */
.ts-logos { padding: 38px 40px 30px; background: #fff; }
.ts-logos__wrap { max-width: var(--ts-content); margin: 0 auto; text-align: center; }
.ts-logos__eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ts-faint); margin: 0 0 24px; }
.ts-logos__row { display: flex; align-items: center; justify-content: center; gap: 64px; flex-wrap: wrap; }
.ts-logos__img { width: auto; max-width: 160px; object-fit: contain; filter: grayscale(100%); opacity: 0.55; }

/* ---------- ts-how module (numbered 1-2-3 steps; feature pages + home) ---------- */
.ts-how { padding: 84px 40px; background: #fff; }
.ts-how__wrap { max-width: var(--ts-content); margin: 0 auto; }
.ts-how__head { text-align: center; margin-bottom: 56px; }
.ts-how__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ts-blue); }
.ts-how__heading { font-family: var(--ts-display); font-weight: 800; font-size: 42px; letter-spacing: -0.025em; color: var(--ts-ink); margin: 12px 0 0; }
.ts-how__grid { display: grid; gap: 0; position: relative; }
.ts-how__line { position: absolute; top: 28px; left: 16%; right: 16%; height: 2px; background: linear-gradient(90deg, #109CF1, #11C5B3, #7B61FF); z-index: 0; }
.ts-how__step { position: relative; z-index: 1; text-align: center; padding: 0 22px; }
.ts-how__num { width: 56px; height: 56px; border-radius: 50%; color: #fff; font-family: var(--ts-display); font-weight: 800; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 5px solid #fff; }
.ts-how__title { font-family: var(--ts-display); font-weight: 700; font-size: 21px; color: var(--ts-ink); margin: 0 0 8px; }
.ts-how__desc { font-size: 15px; line-height: 1.55; color: var(--ts-text); margin: 0; }

/* ---------- ts-industries-showcase module (industry pill cloud; also rendered by ts-industries-pills) ---------- */
.ts-indshow { padding: 78px 40px; background: linear-gradient(180deg, #F4F9FE 0%, #ffffff 70%); }
.ts-indshow__inner { max-width: var(--ts-content); margin: 0 auto; }
.ts-indshow__head { text-align: center; max-width: 680px; margin: 0 auto 38px; }
.ts-indshow__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ts-blue); }
.ts-indshow__heading { font-family: var(--ts-display); font-weight: 800; font-size: 38px; letter-spacing: -0.025em; color: var(--ts-ink); margin: 12px 0 14px; }
.ts-indshow__sub { font-size: 17px; line-height: 1.6; color: var(--ts-text); margin: 0; }
.ts-indshow__wrap { position: relative; max-height: 188px; overflow: hidden; transition: max-height .45s ease; }
.ts-indshow__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.ts-indpill { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; background: #fff; border: 1px solid #E3EDF7; border-radius: 999px; text-decoration: none; font-size: 14.5px; font-weight: 700; color: var(--ts-ink); }
.ts-indpill__ico { display: inline-flex; }
.ts-indshow__fade { position: absolute; left: 0; right: 0; bottom: 0; height: 92px; background: linear-gradient(180deg, rgba(247,250,253,0) 0%, #ffffff 88%); pointer-events: none; }
.ts-indshow__foot { text-align: center; margin-top: 26px; }
.ts-indshow__btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; background: #fff; color: var(--ts-blue-600); border: 1px solid #CDE4F7; border-radius: 12px; font-size: 15px; font-weight: 800; text-decoration: none; }

/* ---------- ts-ind-hero module (hero + phone mockup; industry + feature pages) ---------- */
.rs-hero { position: relative; overflow: hidden; padding: 60px 40px 70px; }
.rs-hero__grid { max-width: var(--ts-content); margin: 0 auto; display: grid; grid-template-columns: 1fr 0.92fr; gap: 52px; align-items: center; }
.rs-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #CDE7FA; padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--ts-blue-600); }
.rs-hero__title { font-family: var(--ts-display); font-weight: 900; font-size: 56px; line-height: 1.03; letter-spacing: -0.03em; margin: 22px 0 0; color: var(--ts-ink); }
.rs-hero__sub { font-size: 19px; line-height: 1.55; color: var(--ts-text); max-width: 500px; margin: 22px 0 0; }
.rs-hero__actions { display: flex; align-items: center; gap: 14px; margin: 30px 0 0; flex-wrap: wrap; }
.rs-hero__cta1 { display: inline-flex; align-items: center; gap: 9px; padding: 16px 26px; background: var(--ts-blue); color: #fff; border-radius: 12px; font-size: 17px; font-weight: 700; box-shadow: 0 12px 26px rgba(16,156,241,0.4); }
.rs-hero__cta2 { display: inline-flex; align-items: center; padding: 16px 22px; background: #fff; color: var(--ts-ink); border: 1px solid var(--ts-line-2); border-radius: 12px; font-size: 17px; font-weight: 600; }
.rs-hero__trust { font-size: 14px; color: #9A8568; margin: 18px 0 0; display: flex; align-items: center; gap: 8px; }
.rs-hero__phone-col { position: relative; display: flex; justify-content: center; }
.rs-hero__phone { position: relative; width: 280px; height: 560px; background: #0F1F33; border-radius: 48px; padding: 8px; box-shadow: 0 30px 70px rgba(20,43,73,0.3); }
.rs-hero__screen { position: relative; width: 100%; height: 100%; background: #fff; border-radius: 42px; overflow: hidden; display: flex; flex-direction: column; font-family: 'Nunito'; /* bare, no fallback stack: the ● glyph in "Verified business" must render from the same last-resort font as the original inline style */ }
.rs-hero__notch { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 100px; height: 26px; background: #0F1F33; border-radius: 999px; z-index: 3; }
.rs-hero__contact { display: flex; align-items: center; gap: 9px; padding: 46px 16px 12px; background: #F8FAFC; border-bottom: 1px solid #EEF3F1; }
.rs-hero__avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#FF8A5B,#FF7A4D); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.rs-hero__contact-meta { flex: 1; min-width: 0; }
.rs-hero__biz { font-weight: 800; font-size: 14px; color: var(--ts-ink); white-space: nowrap; }
.rs-hero__verified { font-size: 11px; color: #14A06A; font-weight: 700; }
.rs-hero__thread { flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; background: #fff; }
.rs-hero__timestamp { align-self: center; font-size: 10px; color: var(--ts-placeholder); font-weight: 700; }
.rs-hero__msg-in { align-self: flex-start; max-width: 84%; background: #EEF1F4; color: var(--ts-ink-soft); border-radius: 16px 16px 16px 5px; font-size: 13px; line-height: 1.45; padding: 10px 13px; }
.rs-hero__msg-out { align-self: flex-end; max-width: 60%; background: #34C759; color: #fff; border-radius: 16px 16px 5px 16px; font-size: 13px; line-height: 1.45; padding: 10px 13px; }
.rs-hero__mms { align-self: flex-start; max-width: 84%; background: #EEF1F4; border-radius: 16px 16px 16px 5px; overflow: hidden; }
.rs-hero__mms-tile { height: 120px; background: linear-gradient(135deg, #FFE0CF 0%, #FFD0E4 50%, #DCE5FF 100%); display: flex; align-items: center; justify-content: center; font-size: 46px; }
.rs-hero__mms-caption { color: var(--ts-ink-soft); font-size: 13px; line-height: 1.45; padding: 9px 13px; }
.rs-hero__homebar { width: 120px; height: 5px; background: #0F1F33; border-radius: 999px; margin: 0 auto 9px; opacity: .85; }

/* ---------- ts-usecase-rail module (tabbed use cases; industry + feature pages) ---------- */
.rs-usecase { padding: 80px 40px; background: linear-gradient(180deg, #ffffff 0%, #F4F9FE 22%, #F4F9FE 78%, #ffffff 100%); }
.rs-usecase__wrap { max-width: var(--ts-content); margin: 0 auto; }
.rs-usecase__head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.rs-usecase__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ts-blue); }
.rs-usecase__heading { font-family: var(--ts-display); font-weight: 800; font-size: 40px; letter-spacing: -0.025em; color: var(--ts-ink); margin: 12px 0 0; }
.rs-usecase__sub { font-size: 17px; line-height: 1.55; color: var(--ts-text); margin: 14px 0 0; }
.rs-usecase .rs-uc-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 24px; align-items: start; }
.rs-uc-rail { display: flex; flex-direction: column; gap: 8px; }
.rs-uc-tab__text { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.rs-uc-tab__name { font-family: var(--ts-display); font-weight: 700; font-size: 16px; color: var(--ts-ink); }
.rs-uc-tab__sub { font-size: 13px; color: #7C8DA4; font-weight: 500; }
.rs-uc-panels { position: relative; }
.rs-uc-panel { background: #fff; border: 1px solid var(--ts-line); border-radius: 24px; box-shadow: 0 20px 50px rgba(20,43,73,0.08); padding: 38px; }
.rs-uc-panel__id { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.rs-uc-panel__ico { width: 44px; height: 44px; border-radius: 12px; flex: none; display: inline-flex; align-items: center; justify-content: center; background: var(--c-bg); }
.rs-uc-panel__name { font-family: var(--ts-display); font-weight: 800; font-size: 16px; color: var(--c); }
.rs-uc-panel__headline { font-family: var(--ts-display); font-weight: 800; font-size: 27px; letter-spacing: -0.02em; color: var(--ts-ink); margin: 0 0 12px; line-height: 1.18; }
.rs-uc-panel__desc { font-size: 16px; line-height: 1.6; color: var(--ts-text); margin: 0 0 24px; }
.rs-uc-panel__bullets { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.rs-uc-panel__bullet { display: flex; align-items: flex-start; gap: 11px; }
.rs-uc-panel__check { width: 22px; height: 22px; border-radius: 50%; flex: none; display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; background: var(--c-bg); }
.rs-uc-panel__bullet-text { font-size: 15px; line-height: 1.5; color: #3A4F68; }
.rs-uc-panel__samplebox { background: #F8FAFC; border: 1px solid #EEF3F8; border-radius: 16px; padding: 18px; }
.rs-uc-panel__sample-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ts-placeholder); margin-bottom: 10px; }
.rs-uc-panel__thread { display: flex; flex-direction: column; gap: 8px; font-family: 'Nunito'; /* bare, matching the original inline */ }
.rs-uc-panel__msg-in { align-self: flex-start; max-width: 82%; background: #EEF1F4; color: var(--ts-ink-soft); font-size: 14px; line-height: 1.45; padding: 10px 13px; border-radius: 14px 14px 14px 4px; }
.rs-uc-panel__msg-out { align-self: flex-end; max-width: 82%; background: var(--ts-blue); color: #fff; font-size: 14px; line-height: 1.45; padding: 10px 13px; border-radius: 14px 14px 4px 14px; }
.rs-uc-panel__msg-solo { color: #fff; font-size: 14px; line-height: 1.5; padding: 13px 16px; border-radius: 16px 16px 16px 5px; box-shadow: 0 8px 20px rgba(20,43,73,0.12); background: var(--c); }

/* ---------- ts-who-benefits module (audience tabs; industry pages) ---------- */
.rs-who { padding: 80px 40px; background: #fff; }
.rs-who__wrap { max-width: var(--ts-content); margin: 0 auto; }
.rs-who__heading { font-family: var(--ts-display); font-weight: 800; font-size: 30px; letter-spacing: -0.02em; color: var(--ts-ink); text-align: center; margin: 0 0 24px; }
.rs-who .rs-aud-grid { display: grid; grid-template-columns: 1.45fr 0.78fr; gap: 22px; align-items: stretch; }
.rs-who__panelbox { background: var(--ts-tint); border: 1px solid #E4EEF8; border-radius: 22px; padding: 34px; position: relative; min-height: 240px; }
.rs-who__name { display: inline-flex; align-items: center; font-family: var(--ts-display); font-weight: 800; font-size: 15px; color: #fff; background: var(--ts-ink); padding: 7px 14px; border-radius: 999px; }
.rs-who__desc { font-size: 18px; line-height: 1.6; color: #3A4F68; margin: 16px 0 0; }
.rs-who__sample-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ts-placeholder); margin-bottom: 10px; }
.rs-who__sample { color: #fff; font-size: 15px; line-height: 1.5; padding: 14px 16px; border-radius: 16px 16px 16px 5px; max-width: 460px; box-shadow: 0 10px 24px rgba(20,43,73,0.12); }
.rs-who__chips { display: flex; flex-direction: column; gap: 10px; }

/* ---------- ts-message-examples module (copyable message grid; industry pages) ---------- */
.rs-examples { padding: 80px 40px; background: #fff; }
.rs-examples__wrap { max-width: var(--ts-content); margin: 0 auto; }
.rs-examples__head { text-align: center; max-width: 600px; margin: 0 auto 44px; }
.rs-examples__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ts-blue); }
.rs-examples__heading { font-family: var(--ts-display); font-weight: 800; font-size: 38px; letter-spacing: -0.025em; color: var(--ts-ink); margin: 12px 0 10px; }
.rs-examples__intro { font-size: 16px; color: var(--ts-text); margin: 0; text-align: center; }
.rs-merge-pop__label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ts-placeholder); padding: 2px 8px 9px; }
.rs-merge-pop__list { display: flex; flex-direction: column; }
.rs-merge-pop__row { display: flex; align-items: baseline; gap: 10px; padding: 8px 9px; border-radius: 9px; }
.rs-merge-pop__row code { flex: none; background: var(--ts-tint-cool); color: var(--ts-blue-600); padding: 2px 7px; border-radius: 6px; font-family: var(--ts-msg); font-weight: 700; font-size: 13px; }
.rs-merge-pop__row span { font-size: 13px; color: var(--ts-text-2); line-height: 1.4; }
.rs-merge-pop__custom { margin-top: 10px; padding: 13px 14px; background: linear-gradient(135deg, #E9F4FE, #E5F8F5); border-radius: 12px; }
.rs-merge-pop__custom-title { font-weight: 800; font-size: 13px; color: var(--ts-ink); display: flex; align-items: center; gap: 7px; }
.rs-merge-pop__custom-note { font-size: 12.5px; line-height: 1.5; color: #44586F; margin-top: 5px; }
.rs-examples__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; font-family: 'Nunito'; /* bare, matching the original inline (fallback stack changes how ✓✓/● glyphs render) */ }
.rs-example { background: #FAFCFE; border: 1px solid #ECF2F8; border-radius: 18px; padding: 22px; }
.rs-example__label { font-size: 12px; font-weight: 800; color: var(--ex-color); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.rs-example__bubble { background: var(--ex-color); color: #fff; font-size: 14px; line-height: 1.5; padding: 12px 14px; border-radius: 16px 16px 4px 16px; }
.rs-example__delivered { font-size: 11px; color: var(--ts-placeholder); text-align: right; margin-top: 6px; }

/* ---------- ts-trust-cols module (trust/compliance columns; industry pages) ---------- */
.rs-trust { padding: 80px 40px; background: #fff; }
.rs-trust__grid { max-width: var(--ts-content-narrow); margin: 0 auto; display: grid; gap: 20px; align-items: stretch; }
.rs-trust__col { background: var(--ts-tint); border: 1px solid #E4EEF8; border-radius: 22px; padding: 32px; }
.rs-trust__badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--tc-accent); background: var(--tc-accent-bg); padding: 6px 13px; border-radius: 999px; margin-bottom: 16px; }
.rs-trust__heading { font-family: var(--ts-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--ts-ink); margin: 0 0 9px; }
.rs-trust__desc { font-size: 15px; line-height: 1.6; color: var(--ts-text); margin: 0 0 20px; }
.rs-trust__items { display: flex; flex-direction: column; gap: 14px; }
.rs-trust__item { display: flex; align-items: flex-start; gap: 11px; }
.rs-trust__item > svg { flex: none; margin-top: 1px; }
.rs-trust__item-title { font-weight: 700; font-size: 15px; color: var(--ts-ink); }
.rs-trust__item-sub { font-size: 14px; color: var(--ts-text-2); }

/* ---------- ts-faq module (FAQ section wrapper; accordion itself is .acb-faq in global.css) ---------- */
.ts-faq-section { padding: 20px 40px 84px; background: #fff; scroll-margin-top: 96px; }
.ts-faq-section__wrap { max-width: 760px; margin: 0 auto; }
.ts-faq-section__heading { font-family: var(--ts-display); font-weight: 800; font-size: 36px; letter-spacing: -0.025em; color: var(--ts-ink); text-align: center; margin: 0 0 36px; }

/* ---------- ts-testimonials module (every industry + feature page + home) ---------- */
.ts-testimonials { padding: 84px 40px; background: #fff; }
.ts-tst__wrap { max-width: var(--ts-content); margin: 0 auto; }
.ts-tst__heading { font-family: var(--ts-display); font-weight: 800; font-size: 38px; letter-spacing: -0.025em; color: var(--ts-ink); text-align: center; margin: 0 0 44px; }
.ts-tst__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ts-tst__card { background: #FAFCFE; border: 1px solid #ECF2F8; border-radius: 18px; padding: 24px; }
.ts-tst__stars { display: flex; gap: 3px; margin-bottom: 12px; }
.ts-tst__quote { font-size: 15px; line-height: 1.6; color: #2C3E57; margin: 0 0 18px; }
.ts-tst__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ts-tst__person { display: flex; align-items: center; gap: 11px; }
.ts-tst__avatar { width: 40px; height: 40px; border-radius: 50%; flex: none; color: #fff; font-family: var(--ts-display); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.ts-tst__name { font-weight: 800; font-size: 14px; color: var(--ts-ink); }
.ts-tst__role { font-size: 13px; color: #7C8DA4; }
.ts-tst__badge { flex: none; font-size: 12px; font-weight: 800; padding: 6px 10px; border-radius: 999px; }

/* ---------- ts-stats module (stat strip; every industry + feature page + home) ---------- */
.ts-stats { padding: 30px 40px 64px; background: #fff; }
.ts-stats__grid { max-width: var(--ts-content-narrow); margin: 0 auto; display: grid; gap: 0; text-align: center; }
.ts-stat { padding: 10px 20px; }
.ts-stat--divided { border-left: 1px solid var(--ts-line); }
.ts-stat__number { font-family: var(--ts-display); font-weight: 800; font-size: 46px; color: var(--ts-ink); letter-spacing: -0.03em; }
.ts-stat__suffix--word { margin-left: 4px; }
.ts-stat__label { font-size: 15px; color: var(--ts-text-2); margin-top: 2px; }
