:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f0f4f8;
  --ink: #111827;
  --muted: #657084;
  --line: #dbe3ef;
  --nav: #24223f;
  --nav-2: #312f54;
  --blue: #2563eb;
  --blue-soft: #e8f0ff;
  --green: #16a34a;
  --green-soft: #dcfce7;
  --amber: #d97706;
  --amber-soft: #fef3c7;
  --rose: #db2777;
  --rose-soft: #fce7f3;
  --cyan-soft: #dff7fb;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.icon-sprite {
  display: none;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.app-shell {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  min-height: 100vh;
}

.rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 12px;
  color: #d7d8e9;
  background: var(--nav);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.rail-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  color: #c4c6dc;
  background: transparent;
}

.rail-button:hover,
.rail-button:focus-visible {
  color: #ffffff;
  background: var(--nav-2);
  outline: none;
}

.rail-button.active {
  color: #ffffff;
  background: var(--blue);
}

.rail-bottom {
  margin-top: auto;
}

.workspace {
  min-width: 0;
}

.inbox-view {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(420px, 1fr) minmax(280px, 340px);
  min-height: 100vh;
}

.conversation-pane,
.chat-pane,
.context-pane,
.module-view {
  min-width: 0;
  background: var(--surface);
}

.conversation-pane {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.pane-header,
.chat-header,
.module-header {
  min-height: 88px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--line);
}

.pane-header,
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.2;
}

h2 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

h3 {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.3;
}

.status-chip,
.tag,
.mini-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.status-chip.online {
  color: #116233;
  background: var(--green-soft);
}

.status-chip.pending {
  color: #8a4a02;
  background: var(--amber-soft);
}

.status-chip.resolved {
  color: #24533a;
  background: #e7f5ee;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  margin: 16px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #ffffff;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: var(--ink);
  outline: 0;
}

.filter-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 0 16px 14px;
}

.filter-tab {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface-soft);
  font-weight: 700;
}

.filter-tab.active {
  color: var(--blue);
  background: var(--blue-soft);
}

.conversation-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: auto;
  padding: 0 12px 18px;
}

.conversation-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  min-height: 92px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px;
  text-align: left;
  color: inherit;
  background: transparent;
}

.conversation-card:hover {
  background: #f7f9fc;
}

.conversation-card.active {
  border-color: #cbdafc;
  background: var(--blue-soft);
}

.avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #334155;
  background: var(--rose-soft);
  font-weight: 800;
}

.avatar.green {
  background: var(--green-soft);
}

.avatar.blue {
  background: var(--blue-soft);
}

.avatar.cyan {
  background: var(--cyan-soft);
}

.avatar.amber {
  background: var(--amber-soft);
}

.presence-dot {
  position: absolute;
  right: 1px;
  bottom: 3px;
  width: 11px;
  height: 11px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--green);
}

.card-title-row,
.message-meta,
.context-line,
.settings-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.visitor-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.preview {
  overflow: hidden;
  margin: 5px 0 8px;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
}

.mini-chip {
  min-height: 22px;
  padding: 3px 8px;
  color: #42526b;
  background: #eef2f7;
  font-size: 11px;
}

.mini-chip.sales {
  color: #075985;
  background: #e0f2fe;
}

.mini-chip.support {
  color: #166534;
  background: var(--green-soft);
}

.mini-chip.urgent {
  color: #9f1239;
  background: var(--rose-soft);
}

.unread {
  margin-left: auto;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--rose);
  font-size: 12px;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
}

.chat-pane {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.chat-title-text {
  min-width: 0;
}

.chat-title-text h2 {
  overflow: hidden;
  margin-bottom: 3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.select-control {
  min-height: 38px;
  max-width: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--ink);
  background: #ffffff;
}

.ghost-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border-radius: 8px;
  padding: 0 12px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
}

.primary-button {
  color: #ffffff;
  background: var(--blue);
}

.primary-button:hover {
  background: #1d4ed8;
}

.secondary-button {
  color: var(--blue);
  background: var(--blue-soft);
}

a.secondary-button {
  text-decoration: none;
}

.ghost-button {
  color: #42526b;
  border-color: var(--line);
  background: #ffffff;
}

.icon-button svg {
  flex: 0 0 auto;
}

.tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.tag {
  color: #43516b;
  background: #eef2f7;
}

.tag.add {
  border: 1px dashed #a8b3c5;
  color: var(--blue);
  background: #ffffff;
}

.message-feed {
  overflow: auto;
  padding: 26px 26px 30px;
  background: linear-gradient(#ffffff, #fbfcff);
}

.message-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.message-row.operator {
  justify-content: flex-end;
}

.message-row.operator .bubble {
  color: #ffffff;
  background: var(--blue);
}

.message-row.visitor .bubble {
  color: #273449;
  background: #eef2f7;
}

.bubble {
  max-width: min(560px, 78%);
  border-radius: 18px;
  padding: 11px 14px;
  line-height: 1.45;
}

.message-time {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.system-note {
  width: fit-content;
  max-width: 82%;
  margin: 12px auto 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  background: #ffffff;
  font-size: 12px;
}

.composer {
  border-top: 1px solid var(--line);
  padding: 12px 18px 18px;
  background: #ffffff;
}

.quick-replies {
  display: flex;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 10px;
  overflow-x: auto;
}

.quick-replies button {
  flex: 0 0 auto;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  color: #42526b;
  background: #ffffff;
  font-weight: 700;
}

.composer-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.composer textarea {
  width: 100%;
  min-height: 52px;
  max-height: 140px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  outline: 0;
}

.composer textarea:focus,
.search-box:focus-within,
.select-control:focus {
  border-color: #93b4ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.context-pane {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 1px solid var(--line);
  padding: 24px;
  overflow: auto;
}

.context-section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.context-section:last-child {
  border-bottom: 0;
}

.context-line,
.settings-line {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.context-line strong,
.settings-line strong {
  color: var(--ink);
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.timeline-dot {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.note-box {
  width: 100%;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  resize: vertical;
}

.module-view {
  min-height: 100vh;
}

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.module-header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.module-body {
  padding: 24px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.module-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.rule-card,
.settings-panel,
.demo-surface {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 18px;
  align-items: start;
}

.activity-list,
.checklist,
.source-list {
  display: grid;
  gap: 10px;
}

.check-item,
.source-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
}

.check-marker {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
}

.check-marker.todo {
  color: var(--blue);
  background: var(--blue-soft);
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-soft);
}

.progress-fill {
  height: 100%;
  width: var(--progress, 0%);
  border-radius: inherit;
  background: var(--blue);
}

.feature-card p,
.rule-card p,
.settings-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  margin-top: 26px;
}

.with-gap {
  margin-top: 18px;
}

.code-block {
  overflow: auto;
  margin: 12px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: #263244;
  background: #f8fafc;
  font-size: 12px;
  line-height: 1.5;
}

.app-error {
  max-width: 680px;
  border: 1px solid #fecdd3;
  border-radius: 8px;
  padding: 18px;
  color: #7f1d1d;
  background: #fff1f2;
}

.login-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: #f6f8fb;
}

.login-panel {
  width: min(460px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.login-panel h1 {
  margin: 0 0 8px;
}

.login-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.login-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.field-line {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field-line.inline-check {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
}

.field-line.inline-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.team-list {
  display: grid;
  gap: 10px;
}

.team-member-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 150px);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.team-member-line small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.quick-reply-editor {
  display: grid;
  gap: 10px;
}

.automation-builder {
  display: grid;
  grid-template-columns: minmax(190px, 1.2fr) minmax(150px, .8fr) minmax(180px, 1fr) minmax(220px, 1.2fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}

.quick-reply-item {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.quick-reply-active {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.color-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 1px solid var(--line);
  border-radius: 50%;
  vertical-align: -2px;
  background: var(--swatch, var(--blue));
}

.settings-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  outline: 0;
}

.settings-input:disabled,
.select-control:disabled,
.primary-button:disabled,
.ghost-button:disabled,
.secondary-button:disabled,
.rail-button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.theme-swatch {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  color: var(--ink);
  background: #ffffff;
  text-align: left;
}

.theme-swatch.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.theme-swatch span {
  display: block;
  width: 46px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--theme-header) 0 50%, var(--theme-accent) 50% 100%);
}

.ai-answer {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fafc;
}

.ai-answer p {
  margin-bottom: 10px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 18px;
}

.demo-site {
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #ffffff;
}

.demo-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 44px;
  color: var(--muted);
}

.demo-hero {
  max-width: 700px;
}

.demo-hero h2 {
  font-size: 36px;
}

.demo-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.product-tile {
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f9fafc;
}

.chat-widget {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
}

.widget-window {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(390px, calc(100vw - 32px));
  height: min(620px, calc(100vh - 112px));
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid #cad5e4;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.widget-window.radius-soft {
  border-radius: 10px;
}

.widget-window.radius-square {
  border-radius: 8px;
}

.widget-window.closed {
  display: none;
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 18px;
  color: #ffffff;
  background: #172554;
}

.widget-header .avatar {
  flex: 0 0 auto;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.widget-header h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.widget-window.compact .widget-header {
  min-height: 64px;
  padding: 12px 14px;
}

.widget-window.compact .widget-header h3 {
  font-size: 16px;
}

.widget-window.compact .widget-header .avatar {
  width: 36px;
  height: 36px;
}

.widget-header p {
  margin: 0;
  color: #bfdbfe;
}

.widget-feed {
  overflow: auto;
  padding: 18px;
  background: #ffffff;
}

.widget-message {
  max-width: 86%;
  margin-bottom: 12px;
  border-radius: 16px;
  padding: 10px 12px;
  line-height: 1.45;
}

.widget-message.agent {
  border: 1px solid var(--line);
  color: #273449;
  background: #ffffff;
}

.widget-message.operator,
.widget-message.ai {
  border: 1px solid var(--line);
  color: #273449;
  background: #ffffff;
}

.widget-message.visitor {
  margin-left: auto;
  color: #ffffff;
  background: var(--blue);
}

.widget-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.widget-form input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  outline: 0;
}

.widget-toggle {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.widget-toggle.with-label {
  display: inline-flex;
  width: auto;
  min-width: 62px;
  border-radius: 999px;
  padding: 0 18px;
  gap: 8px;
  font-weight: 800;
}

.hidden {
  display: none !important;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 40;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  background: #111827;
  box-shadow: var(--shadow);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1180px) {
  .inbox-view {
    grid-template-columns: minmax(260px, 330px) minmax(380px, 1fr);
  }

  .context-pane {
    display: none;
  }

  .module-grid,
  .module-grid.two,
  .metric-row,
  .automation-builder,
  .demo-layout,
  .dashboard-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .rail {
    position: sticky;
    top: 0;
    z-index: 30;
    flex-direction: row;
    min-height: 68px;
    padding: 10px 12px;
  }

  .brand-mark {
    margin: 0 auto 0 0;
  }

  .rail-bottom {
    margin-top: 0;
  }

  .inbox-view {
    grid-template-columns: 1fr;
  }

  .conversation-pane {
    max-height: 46vh;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .chat-pane {
    min-height: 54vh;
  }

  .module-grid,
  .module-grid.two,
  .metric-row,
  .automation-builder,
  .demo-layout,
  .dashboard-layout,
  .demo-products {
    grid-template-columns: 1fr;
  }

  .module-header,
  .chat-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .rail-button {
    width: 42px;
    height: 42px;
  }

  .pane-header,
  .chat-header,
  .module-header {
    padding: 18px 16px 14px;
  }

  .tag-row,
  .message-feed,
  .module-body,
  .context-pane {
    padding-left: 16px;
    padding-right: 16px;
  }

  .composer-box {
    grid-template-columns: 1fr;
  }

  .primary-button {
    width: 100%;
  }

  .team-member-line {
    grid-template-columns: 1fr;
  }

  .theme-grid {
    grid-template-columns: 1fr;
  }

  .widget-form .primary-button {
    width: 44px;
  }

  .bubble {
    max-width: 88%;
  }

  .chat-widget {
    right: 16px;
    bottom: 16px;
  }
}
