/* ============================================================
   Sistemas Web Colombia — sistema de diseño v3
   Escala 8px · 1 acento · Inter + mono de sistema
   ============================================================ */
:root {
  --bg: #FAFAF9;
  --surface: #FFFFFF;
  --ink: #1C1917;
  --ink-2: #57534E;
  --ink-3: #79716B;
  --line: #E7E5E4;
  --line-soft: #F0EFED;
  --accent: #047857;
  --accent-strong: #065F46;
  --accent-soft: #ECFDF5;
  --dark: #161412;
  --dark-ink: #FAFAF9;
  --dark-ink-2: #A8A29E;

  --mono: ui-monospace, SFMono-Regular, "Cascadia Mono", Consolas, monospace;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.04), 0 2px 8px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 2px 4px rgba(28, 25, 23, 0.05), 0 8px 24px rgba(28, 25, 23, 0.07);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);

  --wrap: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 8px 16px; border-radius: var(--r-sm); z-index: 100;
}
.skip:focus { left: 16px; top: 16px; color: var(--bg); }

/* ---------- tipografía ---------- */
h1, h2, h3 { line-height: 1.15; margin: 0; text-wrap: balance; }

h1 {
  font-size: clamp(2.25rem, 5.2vw, 3.5rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0; max-width: 65ch; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 16px;
}

.sub {
  font-size: 1.125rem;
  color: var(--ink-2);
  margin-top: 20px;
}

.mono { font-family: var(--mono); }

/* ---------- botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  font-weight: 560;
  font-size: 0.9375rem;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out),
              background-color 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent-strong); color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink-3); color: var(--ink); transform: translateY(-1px); }

.btn-sm { padding: 9px 16px; font-size: 0.875rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 249, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease-out);
}
.site-header.scrolled { border-bottom-color: var(--line); }

.site-header .wrap {
  display: flex; align-items: center; gap: 32px;
  height: 64px;
}

.logo {
  font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.02em;
  color: var(--ink); white-space: nowrap;
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--ink); }

.nav-desktop { margin-left: auto; }
.nav-desktop ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 4px;
}
.nav-desktop a {
  display: block; padding: 8px 12px;
  color: var(--ink-2); font-size: 0.875rem; font-weight: 500;
  border-radius: 8px;
  transition: color 0.15s ease-out, background-color 0.15s ease-out;
}
.nav-desktop a:hover { color: var(--ink); background: var(--line-soft); }
.nav-desktop a[aria-current="page"] { color: var(--ink); }

.cta-header { flex: none; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--ink); cursor: pointer;
  transition: border-color 0.15s ease-out;
}
.nav-toggle:hover { border-color: var(--ink-3); }
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- drawer móvil ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(28, 25, 23, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 70;
  width: min(320px, 85vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  padding: 24px;
  transform: translateX(105%);
  transition: transform 0.32s var(--ease-out);
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.drawer nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.drawer nav a {
  display: block; padding: 12px 12px;
  color: var(--ink); font-weight: 500; font-size: 1rem;
  border-radius: var(--r-sm);
  transition: background-color 0.15s ease-out;
}
.drawer nav a:hover { background: var(--line-soft); }
.drawer .btn { margin-top: 16px; justify-content: center; }

/* ---------- migas ---------- */
.crumbs {
  padding-top: 24px;
  font-size: 0.8125rem;
  font-family: var(--mono);
  color: var(--ink-3);
}
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { margin-inline: 8px; color: var(--line); }

/* ---------- hero ---------- */
.hero { padding: 56px 0 32px; }
.hero-grid {
  display: grid; gap: 48px;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-meta {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-size: 0.8125rem; font-family: var(--mono); color: var(--ink-3);
}

/* tarjetas de notificación (hero home) */
.notif-stack { display: grid; gap: 12px; }
.notif {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  display: flex; gap: 12px; align-items: flex-start;
}
.notif:nth-child(2) { margin-left: 24px; }
.notif:nth-child(3) { margin-right: 24px; }
.notif svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.notif strong { display: block; font-size: 0.875rem; font-weight: 600; }
.notif small {
  display: block; margin-top: 2px;
  font-family: var(--mono); font-size: 0.75rem; color: var(--ink-3);
}

/* ---------- secciones ---------- */
.section { padding: 56px 0; }
.section-head { margin-bottom: 32px; }
.section + .section { border-top: 1px solid var(--line-soft); }

/* lista con checks */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; max-width: 60ch; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.checklist li strong { color: var(--ink); }
.checklist svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 4px; }

/* pasos */
.pasos {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: paso;
}
.pasos li {
  counter-increment: paso;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
}
.pasos li::before {
  content: "0" counter(paso);
  font-family: var(--mono);
  font-size: 0.8125rem; font-weight: 600;
  color: var(--accent);
  display: block; margin-bottom: 12px;
}
.pasos h3 { margin-bottom: 8px; }
.pasos p { font-size: 0.9375rem; color: var(--ink-2); }

/* tarjetas (casos / servicios) */
.card-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 0; padding: 0; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--ink-3); }
.card:active { transform: scale(0.99); }
.card h3 { margin-bottom: 8px; }
.card h3 a { color: var(--ink); }
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card p { font-size: 0.9375rem; color: var(--ink-2); }
.card .card-arrow {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 560; color: var(--accent);
}
.card .card-arrow svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease-out); }
.card:hover .card-arrow svg { transform: translateX(3px); }

/* prueba real */
.proof {
  background: var(--accent-soft);
  border: 1px solid #D1FAE5;
  border-radius: var(--r-md);
  padding: 24px;
  max-width: 60ch;
}
.proof a { font-weight: 560; display: inline-flex; align-items: center; gap: 6px; }
.proof a svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease-out); }
.proof a:hover svg { transform: translateX(3px); }
.proof p { color: var(--ink-2); font-size: 0.9375rem; margin-top: 6px; }

/* precio */
.precio-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 480px;
  box-shadow: var(--shadow-sm);
}
.precio-card .precio {
  font-family: var(--mono);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink);
}
.precio-card .precio-ref { font-family: var(--mono); font-size: 0.8125rem; color: var(--ink-3); margin-top: 4px; }
.precio-card p { font-size: 0.9375rem; color: var(--ink-2); margin-top: 16px; }
.precio-card .todos { margin-top: 16px; font-size: 0.875rem; font-weight: 560; display: inline-block; }

/* tabla de precios */
.tabla-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; min-width: 560px; }
thead th {
  font-family: var(--mono); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-3); text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
tbody td { padding: 14px 20px; border-bottom: 1px solid var(--line-soft); }
tbody tr:last-child td { border-bottom: none; }
tbody tr { transition: background-color 0.15s ease-out; }
tbody tr:hover { background: var(--bg); }
tbody td:nth-child(2) { font-family: var(--mono); font-weight: 600; white-space: nowrap; }
tbody td:nth-child(3) { font-family: var(--mono); font-size: 0.8125rem; color: var(--ink-3); white-space: nowrap; }
.tabla-nota { margin-top: 16px; font-size: 0.9375rem; color: var(--ink-2); }

/* FAQ */
.faq-list { max-width: 720px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0;
  font-weight: 560; font-size: 1rem;
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease-out;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--accent-strong); }
.faq-list summary svg {
  width: 16px; height: 16px; flex: none; color: var(--ink-3);
  transition: transform 0.22s var(--ease-out);
}
.faq-list details[open] summary svg { transform: rotate(45deg); color: var(--accent); }
.faq-list details p { padding: 0 0 20px; color: var(--ink-2); font-size: 0.9375rem; }

/* caso: resultado */
.resultado-card {
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  max-width: 62ch;
}
.resultado-card p { color: var(--ink); font-size: 1.0625rem; }

.volver { display: inline-flex; align-items: center; gap: 6px; font-weight: 560; font-size: 0.9375rem; }

/* ---------- banda CTA final ---------- */
.cta-band { padding: 64px 0 96px; }
.cta-band-inner {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.cta-band-inner h2 { color: var(--dark-ink); }
.cta-band-inner p { color: var(--dark-ink-2); margin: 16px auto 0; }
.cta-band-inner .btn { margin-top: 32px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); padding: 56px 0 32px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 2fr 1fr 1fr; }
.footer-brand p { font-size: 0.9375rem; color: var(--ink-2); margin-top: 12px; max-width: 36ch; }
.site-footer h3 {
  font-family: var(--mono); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3);
  margin-bottom: 16px;
}
.site-footer nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer nav a { color: var(--ink-2); font-size: 0.9375rem; }
.site-footer nav a:hover { color: var(--ink); }
.footer-legal {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font-family: var(--mono); font-size: 0.75rem; color: var(--ink-3);
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .nav-desktop, .cta-header { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pasos, .card-grid { grid-template-columns: 1fr; }
  .card-grid.cols-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 48px 0; }
  .notif-stack { max-width: 420px; }
}

@media (min-width: 961px) {
  .hero { padding: 88px 0 48px; }
  .section { padding: 72px 0; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- botón de ícono (header) ---------- */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex: none;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--ink-2); background: transparent;
  transition: border-color 0.15s ease-out, color 0.15s ease-out, transform 0.18s var(--ease-out);
}
.icon-btn:hover { border-color: var(--ink-3); color: var(--ink); transform: translateY(-1px); }
.icon-btn:active { transform: scale(0.96); }
.icon-btn svg { width: 18px; height: 18px; }
@media (max-width: 960px) { .icon-btn { display: none; } }

/* botón ghost sobre banda oscura */
.cta-band-inner .btn-ghost { border-color: rgba(250,250,249,0.25); color: var(--dark-ink); }
.cta-band-inner .btn-ghost:hover { border-color: rgba(250,250,249,0.6); color: var(--dark-ink); }
.cta-band-inner .hero-cta { justify-content: center; margin-top: 32px; }
.cta-band-inner .hero-cta .btn { margin-top: 0; }

/* ---------- chat de asesorías ---------- */
.swc-chat { position: fixed; right: 20px; bottom: 20px; z-index: 90; }

.swc-launcher {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  background: var(--ink); color: var(--bg);
  border: none; border-radius: 999px;
  font: 560 0.9375rem/1 "Inter", system-ui, sans-serif;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.swc-launcher:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(28,25,23,.08), 0 12px 32px rgba(28,25,23,.14); }
.swc-launcher:active { transform: scale(0.97); }
.swc-launcher svg { width: 18px; height: 18px; }

.swc-panel {
  position: absolute; right: 0; bottom: calc(100% + 12px);
  width: min(380px, calc(100vw - 40px));
  height: min(560px, calc(100dvh - 120px));
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 12px rgba(28,25,23,.06), 0 24px 64px rgba(28,25,23,.16);
  overflow: hidden;
  opacity: 0; transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.swc-panel.open { opacity: 1; transform: none; }

.swc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: var(--ink); color: var(--bg);
  flex: none;
}
.swc-head strong { display: block; font-size: 0.9375rem; letter-spacing: -0.01em; }
.swc-head small { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 0.6875rem; color: var(--dark-ink-2); margin-top: 2px; }
.swc-head small::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #10B981; }
.swc-close { background: none; border: none; color: var(--dark-ink-2); cursor: pointer; padding: 8px; border-radius: 8px; transition: color 0.15s ease-out; }
.swc-close:hover { color: var(--bg); }
.swc-close svg { width: 16px; height: 16px; }

.swc-msgs { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }

.swc-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.9063rem; line-height: 1.5;
  animation: swc-in 0.3s var(--ease-out);
}
.swc-msg.mia {
  align-self: flex-end;
  background: var(--accent); color: #fff; border: none;
  border-radius: 14px 14px 4px 14px;
}
@keyframes swc-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.swc-typing { display: inline-flex; gap: 4px; padding: 14px; }
.swc-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-3); animation: swc-dot 1s infinite; }
.swc-typing span:nth-child(2) { animation-delay: 0.15s; }
.swc-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes swc-dot { 0%, 60%, 100% { opacity: 0.35; transform: none; } 30% { opacity: 1; transform: translateY(-3px); } }

.swc-chips { display: flex; flex-wrap: wrap; gap: 8px; animation: swc-in 0.3s var(--ease-out); }
.swc-chip {
  padding: 9px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 500 0.875rem/1.2 "Inter", system-ui, sans-serif;
  color: var(--ink); cursor: pointer;
  transition: border-color 0.15s ease-out, background-color 0.15s ease-out, transform 0.18s var(--ease-out);
}
.swc-chip:hover { border-color: var(--accent); color: var(--accent-strong); background: var(--accent-soft); }
.swc-chip:active { transform: scale(0.96); }
.swc-chip-wa { background: var(--accent); border-color: var(--accent); color: #fff; text-decoration: none; display: inline-block; }
.swc-chip-wa:hover { background: var(--accent-strong); color: #fff; }

.swc-card { margin-top: 10px; display: grid; gap: 8px; }
.swc-card div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line-soft); padding-bottom: 6px; }
.swc-card small { font-family: var(--mono); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); }
.swc-card span { font-weight: 560; font-size: 0.875rem; text-align: right; }

.swc-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: var(--surface); flex: none; }
.swc-input {
  flex: 1; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font: 400 16px/1.2 "Inter", system-ui, sans-serif; /* 16px = sin auto-zoom iOS */
  color: var(--ink); background: var(--bg);
  transition: border-color 0.15s ease-out;
}
.swc-input:focus { outline: none; border-color: var(--accent); }
.swc-send {
  width: 44px; border: none; border-radius: var(--r-sm);
  background: var(--accent); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.15s ease-out, transform 0.18s var(--ease-out);
}
.swc-send:hover { background: var(--accent-strong); }
.swc-send:active { transform: scale(0.95); }
.swc-send svg { width: 17px; height: 17px; }

@media (max-width: 480px) {
  .swc-chat { right: 12px; bottom: 12px; }
  .swc-launcher span { display: none; }
  .swc-launcher { padding: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .swc-msg, .swc-chips { animation: none; }
  .swc-typing span { animation: none; }
}
