/* ==========================================================================
   MSP Process — SMS / MMS Ticketing page
   Green-led with cyan accents (dual-brand, matches the home page).
   Reuses sa-hero / sa-section / sa-head primitives. All page-specific
   styles are sms-* namespaced. Non-boxy world-class typography — minimal
   card chrome on body sections; deliberate sim card on the hero.
   ========================================================================== */

/* --- Hero overrides — green-led gradient, dual-brand glow -------------- */
.sms-hero .sa-hero__title-grad {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.sms-hero .sa-hero__pulse-eyebrow {
  color: var(--brand-green);
  background: rgba(10, 154, 86, 0.10);
  border: 1px solid rgba(10, 154, 86, 0.30);
}
.sms-hero .sa-hero__pulse-eyebrow .sa-pulse {
  background: var(--brand-green);
  box-shadow: 0 0 10px var(--brand-green), 0 0 0 4px rgba(10, 154, 86, 0.18);
}
.sms-hero .sa-hero__glow { background: rgba(10, 154, 86, 0.30); }

.sms-grad {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* --- Hero simulator — phone-style SMS thread -------------------------- */
.sms-sim {
  position: relative;
  background: var(--card-grad);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: var(--card-shadow), 0 30px 60px -22px rgba(10, 154, 86, 0.35);
  overflow: hidden; isolation: isolate;
  padding: 16px;
}
.sms-sim::before {
  content: ""; position: absolute; top: -40%; right: -20%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 154, 86, 0.18), transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.sms-sim-inner { position: relative; z-index: 1; }
.sms-sim-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2px 4px 10px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 12px;
}
.sms-sim-dots { display: flex; gap: 6px; }
.sms-sim-dot { width: 10px; height: 10px; border-radius: 50%; }
.sms-sim-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.10em; font-weight: 800;
  color: var(--brand-green);
}
.sms-sim-status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-green); box-shadow: 0 0 12px var(--brand-green);
  animation: smsPulse 1.4s infinite;
}
@keyframes smsPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
.sms-sim-time {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10.5px; color: var(--text); letter-spacing: 0.06em;
}

.sms-tabs {
  display: flex; gap: 6px; padding: 3px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 9px; margin-bottom: 10px;
}
.sms-tab {
  flex: 1; text-align: center;
  padding: 6px 10px;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 9.5px; letter-spacing: 0.08em; font-weight: 800;
  color: var(--text);
  border-radius: 6px; cursor: pointer; transition: all 0.2s; text-transform: uppercase;
  background: transparent; border: 1px solid transparent;
}
.sms-tab:hover { color: var(--heading); }
.sms-tab.is-active {
  background: rgba(10, 154, 86, 0.10);
  color: var(--brand-green);
  border-color: rgba(10, 154, 86, 0.30);
}

.sms-asset {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px; margin-bottom: 10px;
}
.sms-asset-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 800;
  font-size: 13px; flex-shrink: 0; color: #fff;
  letter-spacing: 0.04em;
}
.sms-asset-meta { flex: 1; min-width: 0; }
.sms-asset-name {
  color: var(--heading); font-size: 13.5px; font-weight: 800;
  line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sms-asset-tag {
  color: var(--text);
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10.5px; letter-spacing: 0.06em; font-weight: 700;
}
.sms-asset-pill {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10.5px; color: var(--brand-green);
  letter-spacing: 0.06em; font-weight: 800;
  padding: 4px 10px;
  background: rgba(10, 154, 86, 0.10);
  border: 1px solid rgba(10, 154, 86, 0.30);
  border-radius: 999px; flex-shrink: 0;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}

/* --- SMS thread (chat bubbles) ---------------------------------------- */
.sms-thread {
  display: flex; flex-direction: column; gap: 6px;
  /* Fixed height so the card never resizes as bubbles stream in. */
  height: 380px;
  overflow: hidden;
  padding: 4px 2px;
  /* Pin the latest bubble to the bottom — older bubbles sit above and get
   * clipped by the parent overflow:hidden if the conversation runs long. */
  justify-content: flex-end;
}
.sms-bubble-wrap {
  display: flex; flex-direction: column;
  max-width: 78%;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.sms-bubble-wrap.is-show { opacity: 1; transform: translateY(0); }
.sms-bubble-wrap.in { align-self: flex-start; align-items: flex-start; }
.sms-bubble-wrap.out { align-self: flex-end; align-items: flex-end; }
.sms-bubble-wrap.sys-wrap { align-self: center; max-width: 90%; }

.sms-bubble {
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.4;
  word-wrap: break-word;
  font-family: var(--font-brand);
}
.sms-bubble-wrap.in .sms-bubble {
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--heading);
  border-bottom-left-radius: 4px;
}
.sms-bubble-wrap.out .sms-bubble {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan));
  color: #fff;
  border-bottom-right-radius: 4px;
}
.sms-bubble-wrap.sys-wrap .sms-bubble {
  background: transparent;
  color: var(--text);
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10.5px; letter-spacing: 0.04em;
  text-align: center;
  padding: 4px 8px;
  border-radius: 6px;
}
.sms-bubble-meta {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 9.5px; color: var(--text); letter-spacing: 0.04em;
  margin-top: 3px; padding: 0 6px;
}

/* MMS attachment card inside an inbound bubble */
.sms-mms {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 11px;
  background: var(--surface);
  border: 1px dashed rgba(10, 154, 86, 0.42);
  border-radius: 12px;
  min-width: 200px;
}
.sms-mms-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 154, 86, 0.12);
  color: var(--brand-green);
  flex-shrink: 0;
  font-size: 16px;
}
.sms-mms-name { color: var(--heading); font-size: 12.5px; font-weight: 700; line-height: 1.2; }
.sms-mms-meta {
  color: var(--text);
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.04em; font-weight: 600;
  margin-top: 2px;
}

/* Typing indicator */
.sms-typing {
  display: inline-flex; gap: 4px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}
.sms-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text);
  animation: smsTyping 1.2s infinite ease-in-out;
}
.sms-typing span:nth-child(2) { animation-delay: 0.18s; }
.sms-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes smsTyping {
  0%, 80%, 100% { opacity: 0.4; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

.sms-sim-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; margin-top: 10px;
  border-top: 1px solid var(--hairline);
}
.sms-sim-foot-left { display: flex; gap: 10px; flex-wrap: wrap; }
.sms-foot-chip {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 9.5px; letter-spacing: 0.10em;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 4px 9px; border-radius: 999px;
  font-weight: 700; text-transform: uppercase;
}

.sms-sim-result {
  position: absolute; inset: 0;
  display: none; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 32px;
  background:
    radial-gradient(ellipse at center, rgba(10, 154, 86, 0.16), transparent 60%),
    color-mix(in srgb, var(--card-grad) 96%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 5; opacity: 0;
  transition: opacity 0.45s;
}
.sms-sim-result.is-open { display: flex; opacity: 1; }
.sms-sim-result-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 900; margin-bottom: 14px;
  box-shadow: 0 0 0 8px rgba(10, 154, 86, 0.12);
}
.sms-sim-result h4 {
  color: var(--heading); font-family: var(--font-brand);
  font-size: 22px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.3px;
}
.sms-sim-result p {
  color: var(--text); font-size: 13.5px; margin: 0;
  line-height: 1.55; max-width: 400px;
}

/* --- Feature list — non-boxy left-accent green ------------------------ */
.sms-feats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px clamp(1.5rem, 2.5vw, 2rem);
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.sms-feat {
  position: relative;
  padding: 22px 4px 22px 22px;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  row-gap: 8px;
  align-items: start;
  border-left: 2px solid rgba(10, 154, 86, 0.20);
  background: transparent; box-shadow: none;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.sms-feat__icon  { grid-column: 1; grid-row: 1; align-self: center; }
.sms-feat__title { grid-column: 2; grid-row: 1; align-self: center; }
.sms-feat__desc  { grid-column: 2; grid-row: 2; }
.sms-feat__tag   { grid-column: 2; grid-row: 3; }
.sms-feat:hover { border-left-color: var(--brand-green); transform: translateX(2px); }
.sms-feat__icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  color: var(--brand-green);
  background: linear-gradient(135deg, rgba(10, 154, 86, 0.12), rgba(10, 154, 86, 0.03));
  border: 1px solid rgba(10, 154, 86, 0.24);
}
.sms-feat__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sms-feat__title {
  font-family: var(--font-brand); font-weight: 600;
  font-size: 16.5px; line-height: 1.25; letter-spacing: -0.2px;
  color: var(--heading); margin: 0;
}
.sms-feat__desc { font-weight: 300; font-size: 13.5px; line-height: 1.55; color: var(--text); margin: 0; }
.sms-feat__tag {
  align-self: flex-start;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.12em; font-weight: 800; text-transform: uppercase;
  color: var(--brand-green);
}
@media (max-width: 960px) { .sms-feats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sms-feats { grid-template-columns: 1fr; } }

/* --- 5-step connected-spine flow — green → cyan ---------------------- */
.sms-flow {
  --node: 64px; --line: 3px;
  position: relative; list-style: none;
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding: calc(var(--node) / 2 + 22px) 0 0;
}
.sms-flow::before {
  content: ""; position: absolute;
  top: calc(var(--node) / 2 + 22px); left: 10%; right: 10%;
  height: var(--line); transform: translateY(-50%);
  background: linear-gradient(90deg, var(--brand-green), var(--brand-cyan));
  border-radius: 999px;
  pointer-events: none;
}
.sms-flow__step { position: relative; text-align: center; }
.sms-flow__node {
  position: relative;
  width: var(--node); height: var(--node); border-radius: 50%;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: var(--font-brand); font-weight: 700; font-size: 20px; color: #fff;
  background: linear-gradient(150deg, var(--brand-green), #5af6a8);
  box-shadow: 0 10px 22px -8px rgba(10, 154, 86, 0.55), 0 0 0 6px var(--bg);
  z-index: 2;
}
.sms-flow__step--final .sms-flow__node {
  background: linear-gradient(150deg, var(--brand-cyan), var(--brand-green));
  box-shadow: 0 10px 22px -8px rgba(0, 186, 251, 0.55), 0 0 0 6px var(--bg);
}
.sms-flow__name {
  font-family: var(--font-brand); font-weight: 600;
  font-size: 16px; line-height: 1.25; letter-spacing: -0.2px;
  color: var(--heading); margin: 0 0 8px;
}
.sms-flow__body {
  font-weight: 300; font-size: 13px; line-height: 1.55;
  color: var(--text); margin: 0;
  max-width: 22ch; margin-inline: auto;
}
@keyframes smsFlowPulse {
  0%, 100% { box-shadow: 0 10px 22px -8px rgba(10, 154, 86, 0.55), 0 0 0 6px var(--bg); }
  50% { box-shadow: 0 10px 22px -8px rgba(10, 154, 86, 0.85), 0 0 0 6px var(--bg), 0 0 0 14px rgba(10, 154, 86, 0.12); }
}
@media (prefers-reduced-motion: no-preference) {
  .sms-flow__node { animation: smsFlowPulse 3.4s ease-in-out infinite; }
  .sms-flow__step:nth-child(2) .sms-flow__node { animation-delay: 0.25s; }
  .sms-flow__step:nth-child(3) .sms-flow__node { animation-delay: 0.50s; }
  .sms-flow__step:nth-child(4) .sms-flow__node { animation-delay: 0.75s; }
  .sms-flow__step:nth-child(5) .sms-flow__node { animation-delay: 1.00s; }
}
@media (max-width: 1080px) {
  .sms-flow { grid-template-columns: repeat(2, 1fr); padding-top: 0; gap: 32px 22px; }
  .sms-flow::before { display: none; }
  .sms-flow__step { padding-top: 8px; }
}
@media (max-width: 540px) { .sms-flow { grid-template-columns: 1fr; } }

/* --- Outbound notification cards — 3 message previews ---------------- */
.sms-notify {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1080px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.sms-notify__item {
  position: relative;
  padding: 22px 4px 22px 24px;
  display: flex; flex-direction: column; gap: 12px;
  border-left: 2px solid rgba(10, 154, 86, 0.22);
  background: transparent; box-shadow: none;
}
.sms-notify__head {
  display: flex; align-items: center; gap: 10px;
}
.sms-notify__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  color: var(--brand-green);
  background: linear-gradient(135deg, rgba(10, 154, 86, 0.12), rgba(10, 154, 86, 0.03));
  border: 1px solid rgba(10, 154, 86, 0.24);
}
.sms-notify__icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sms-notify__title {
  font-family: var(--font-brand); font-weight: 600; font-size: 15.5px;
  color: var(--heading); margin: 0; letter-spacing: -0.2px;
}
.sms-notify__bubble {
  font-size: 13.5px; line-height: 1.5;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan));
  padding: 12px 14px;
  border-radius: 14px;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  max-width: 100%;
  position: relative;
  font-family: var(--font-brand);
}
.sms-notify__tag {
  align-self: flex-start;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.12em; font-weight: 800; text-transform: uppercase;
  color: var(--brand-green);
}
@media (max-width: 900px) { .sms-notify { grid-template-columns: 1fr; max-width: 540px; } }

/* --- PSA strip — no outer box ---------------------------------------- */
.sms-psa {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 0;
  background: transparent; border: 0; box-shadow: none;
}
.sms-psa__tile {
  aspect-ratio: 5/2;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  border: 1px solid rgba(11, 18, 48, 0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(11, 18, 48, 0.06);
}
.sms-psa__tile:hover { border-color: var(--brand-green); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(11, 18, 48, 0.10); }
.sms-psa__tile img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sms-psa .theme-light-only { display: inline; }
.sms-psa .theme-dark-only { display: none; }
@media (max-width: 900px) { .sms-psa { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .sms-psa { grid-template-columns: repeat(2, 1fr); } }

/* --- Impact — outcomes pattern (dual-brand) -------------------------- */
.sms-outcomes {
  position: relative;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  max-width: 1180px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
}
.sms-outcomes::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; max-width: 110%; height: 320px;
  background: radial-gradient(ellipse at center, rgba(10, 154, 86, 0.10), rgba(0, 186, 251, 0.07) 55%, transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.sms-stat {
  position: relative; z-index: 1;
  padding: clamp(0.5rem, 1vw, 1rem) clamp(1rem, 2.2vw, 2rem);
  text-align: center;
}
.sms-stat + .sms-stat::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--hairline) 30%, var(--hairline) 70%, transparent);
  pointer-events: none;
}
.sms-stat__num-wrap {
  position: relative;
  display: inline-flex; justify-content: center; align-items: center;
  margin-bottom: clamp(0.625rem, 1.2vw, 1rem);
}
.sms-stat__num-glow {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(160px, 18vw, 220px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 154, 86, 0.28), transparent 65%);
  filter: blur(34px);
  pointer-events: none; z-index: 0;
}
.sms-stat__num-glow--cyan { background: radial-gradient(circle, rgba(0, 186, 251, 0.28), transparent 65%); }
.sms-stat__num {
  position: relative; z-index: 1;
  font-family: var(--font-brand); font-weight: 700;
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  line-height: 0.95; letter-spacing: -2px;
  background: linear-gradient(135deg, var(--brand-green) 0%, #5af6a8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin: 0;
}
.sms-stat__num--dual {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sms-stat__lbl {
  font-family: var(--font-brand); font-weight: 600;
  font-size: clamp(0.95rem, 0.86rem + 0.3vw, 1.0625rem);
  line-height: 1.3; letter-spacing: -0.2px;
  color: var(--heading);
  margin-bottom: 8px;
  max-width: 240px; margin-inline: auto;
}
.sms-stat__meta {
  font-weight: 300; font-size: 13.5px; line-height: 1.55;
  color: var(--text); max-width: 260px; margin-inline: auto;
}
@media (max-width: 960px) {
  .sms-outcomes { grid-template-columns: repeat(2, 1fr); row-gap: clamp(2.25rem, 5vw, 3rem); }
  .sms-stat + .sms-stat::before { display: none; }
}
@media (max-width: 480px) { .sms-outcomes { grid-template-columns: 1fr; } }

/* --- Testimonials — left-accent typographic --------------------------- */
.sms-tm {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1080px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.sms-tm__card {
  position: relative;
  padding: 22px 4px 22px 24px;
  border-left: 2px solid rgba(10, 154, 86, 0.25);
  background: transparent;
  display: flex; flex-direction: column; gap: 18px;
}
.sms-tm__quote {
  font-size: 15px; font-style: normal; line-height: 1.6;
  color: var(--heading); margin: 0; flex: 1;
}
.sms-tm__quote::before {
  content: "\201C"; font-family: var(--font-brand);
  font-size: 2.4em; color: var(--brand-green);
  line-height: 0; vertical-align: -0.32em;
  margin-right: 6px; opacity: 0.55;
}
.sms-tm__foot { display: flex; align-items: center; gap: 12px; }
.sms-tm__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 700; font-size: 13px;
}
.sms-tm__name { font-family: var(--font-brand); font-weight: 600; font-size: 14.5px; color: var(--heading); }
.sms-tm__meta { font-size: 12.5px; color: var(--text); }
@media (max-width: 900px) { .sms-tm { grid-template-columns: 1fr; } }

/* --- Final CTA -------------------------------------------------------- */
.sms-final {
  position: relative; overflow: hidden;
  max-width: 1080px; margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 22px; text-align: center;
  background: linear-gradient(135deg, rgba(10, 154, 86, 0.10), rgba(0, 186, 251, 0.04));
  border: 1px solid rgba(10, 154, 86, 0.22);
}
.sms-final::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 900px; max-width: 130%; height: 280px;
  background: rgba(10, 154, 86, 0.14); filter: blur(110px); border-radius: 700px;
  pointer-events: none;
}
.sms-final__inner { position: relative; z-index: 1; }
.sms-final__title {
  font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem);
  font-weight: 500; line-height: 1.12; letter-spacing: -0.4px;
  margin: 0 0 14px;
}
.sms-final__sub { font-weight: 300; font-size: 15.5px; line-height: 1.55; color: var(--text); max-width: 640px; margin: 0 auto 24px; }
.sms-final__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
