/* ─────────────────────────────────────────────────────────────────────────
   Swift Shipping — Design System
   Mirrors Swift DMS v2.css palette so both products feel like one brand.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --bg:         #0b0e14;
  --surf1:      #11151c;
  --surf2:      #181d26;
  --surf3:      #1f2530;
  --border:     rgba(255,255,255,.06);
  --border2:    rgba(255,255,255,.11);

  --text:       #e8eaed;
  --text2:      #aab0bb;
  --text3:      #6b7280;

  --blue:       #4f8ef7;
  --blue2:      #22d3ee;
  --green:      #10b981;
  --amber:      #f59e0b;
  --red:        #ef4444;
  --purple:     #8b5cf6;

  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-pill:9999px;

  --nav-h: 64px;
  --max-w: 1100px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font: 500 15px/1.55 system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── Animations ─────────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

.anim-up { animation: fadeUp .45s cubic-bezier(.16,1,.3,1) both; }
.anim-up:nth-child(1) { animation-delay:.00s; }
.anim-up:nth-child(2) { animation-delay:.06s; }
.anim-up:nth-child(3) { animation-delay:.12s; }
.anim-up:nth-child(4) { animation-delay:.17s; }
.anim-up:nth-child(5) { animation-delay:.21s; }

/* ── Nav ────────────────────────────────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 24px;
  background: rgba(11,14,20,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none; color: var(--text);
}
.nav-brand img.brand-logo-img {
  height: 30px; width: auto; display: block;
  object-fit: contain;
}
@media (max-width: 700px) {
  .nav-brand img.brand-logo-img { height: 26px; }
}
.nav-brand img:not(.brand-logo-img) { width: 32px; height: 32px; border-radius: 8px; }

.nav-links {
  display: flex; align-items: center; gap: 24px;
  flex: 1;
  list-style: none;
}
.nav-links a {
  color: var(--text2);
  font-size: 14px; font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  margin-left: auto;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600;
  transition: opacity .15s, transform .1s;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
}
.btn-primary:hover { opacity: .88; }
.btn-outline {
  border: 1px solid var(--border2);
  color: var(--text);
}
.btn-outline:hover { background: var(--surf2); }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: var(--r-md); }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* ── Cards ──────────────────────────────────────────────────────────────── */

.card {
  background: var(--surf1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color .18s, box-shadow .18s, transform .18s cubic-bezier(.34,1.56,.64,1);
}
.card:hover { border-color: var(--border2); box-shadow: 0 8px 24px rgba(0,0,0,.35); transform: translateY(-2px); }

/* ── Page layout ────────────────────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px,4vw,40px); font-weight: 800; letter-spacing: -.5px;
  line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  color: var(--text2); font-size: 17px; max-width: 600px; line-height: 1.6;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  padding: 96px 0 80px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: var(--r-pill);
  background: rgba(79,142,247,.1); border: 1px solid rgba(79,142,247,.2);
  font-size: 13px; font-weight: 600; color: var(--blue);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(34px,6vw,60px); font-weight: 900; letter-spacing: -.8px; line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px,2vw,19px); color: var(--text2); max-width: 580px;
  margin: 0 auto 36px; line-height: 1.6;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Service cards ──────────────────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 20px;
}
.service-card {
  background: var(--surf1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color .18s, box-shadow .18s, transform .18s cubic-bezier(.34,1.56,.64,1);
}
.service-card:hover { border-color: rgba(79,142,247,.3); box-shadow: 0 8px 32px rgba(79,142,247,.08); transform: translateY(-3px); }

.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.si-blue   { background: rgba(79,142,247,.12); }
.si-cyan   { background: rgba(34,211,238,.12); }
.si-green  { background: rgba(16,185,129,.12); }

.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.service-card p  { color: var(--text2); font-size: 14px; line-height: 1.6; }

/* ── How it works ───────────────────────────────────────────────────────── */

.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg,var(--blue),var(--blue2));
  color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p  { color: var(--text2); font-size: 14px; line-height: 1.6; }

/* ── Trust bar ──────────────────────────────────────────────────────────── */

.trust-bar {
  background: var(--surf1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text2);
}
.trust-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg,var(--blue),var(--blue2));
}

/* ── Quote form ─────────────────────────────────────────────────────────── */

.quote-wrapper {
  max-width: 680px; margin: 0 auto;
  padding: 48px 24px 80px;
}
.quote-header { text-align: center; margin-bottom: 40px; }
.quote-header h1 { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.quote-header p  { color: var(--text2); }

/* Step indicator */
.step-indicator {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 40px;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: var(--surf2); border: 1px solid var(--border2); color: var(--text3);
  transition: all .25s;
}
.step-dot.active {
  background: linear-gradient(135deg,var(--blue),var(--blue2));
  color: #fff; border-color: transparent;
}
.step-dot.done {
  background: var(--green); color: #fff; border-color: transparent;
}
.step-line {
  flex: 1; max-width: 60px; height: 2px;
  background: var(--border2);
}

/* Step panels */
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeUp .35s cubic-bezier(.16,1,.3,1) both; }

/* Cargo type cards */
.cargo-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
  margin-bottom: 28px;
}
@media (max-width: 520px) { .cargo-cards { grid-template-columns: 1fr; } }

.cargo-card {
  border: 2px solid var(--border2);
  border-radius: var(--r-md);
  padding: 22px 16px;
  text-align: center; cursor: pointer;
  transition: all .18s cubic-bezier(.34,1.56,.64,1);
  user-select: none;
}
.cargo-card:hover { border-color: var(--blue); background: rgba(79,142,247,.04); transform: translateY(-2px); }
.cargo-card.selected { border-color: var(--blue); background: rgba(79,142,247,.08); }
.cargo-card .emoji { font-size: 36px; margin-bottom: 10px; }
.cargo-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cargo-card p  { font-size: 12px; color: var(--text3); }
.cargo-card input[type=radio] { display: none; }

/* Form fields */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.form-label .req { color: var(--blue); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 11px 14px;
  background: var(--surf2);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  color: var(--text);
  font: inherit; font-size: 14px;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(79,142,247,.15);
}
.form-control::placeholder { color: var(--text3); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.form-hint { font-size: 12px; color: var(--text3); margin-top: 5px; }

/* Radio toggle group */
.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-option { display: flex; align-items: center; gap: 6px; }
.radio-option input[type=radio] { accent-color: var(--blue); width: 16px; height: 16px; }
.radio-option label { font-size: 14px; cursor: pointer; }

.form-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ── Admin ──────────────────────────────────────────────────────────────── */

.admin-layout {
  display: flex; min-height: calc(100vh - var(--nav-h));
}
.admin-sidebar {
  width: 220px; flex-shrink: 0;
  background: var(--surf1);
  border-right: 1px solid var(--border);
  padding: 24px 16px;
}
.admin-sidebar h3 {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text3); padding: 0 8px; margin-bottom: 8px;
}
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: var(--r-sm);
  font-size: 14px; color: var(--text2);
  transition: background .15s, color .15s;
}
.sidebar-link:hover, .sidebar-link.active { background: var(--surf2); color: var(--text); }

.admin-main { flex: 1; overflow: auto; padding: 32px; }

.admin-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.admin-table th {
  text-align: left; padding: 10px 14px;
  font-size: 12px; font-weight: 600; color: var(--text3);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:hover td { background: var(--surf2); }
.admin-table a { color: var(--blue); }

.status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  background: rgba(79,142,247,.1); color: var(--blue);
}
.status-new         { background:rgba(79,142,247,.1);  color:var(--blue);  }
.status-reviewing   { background:rgba(245,158,11,.1);  color:var(--amber); }
.status-quoted      { background:rgba(34,211,238,.1);  color:var(--blue2); }
.status-booked      { background:rgba(16,185,129,.1);  color:var(--green); }
.status-in_transit  { background:rgba(139,92,246,.1);  color:var(--purple);}
.status-delivered   { background:rgba(16,185,129,.1);  color:var(--green); }
.status-cancelled   { background:rgba(239,68,68,.1);   color:var(--red);   }

.stat-bar {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
  gap: 16px; margin-bottom: 32px;
}
.stat-card {
  background: var(--surf1); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px;
}
.stat-card .val { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.stat-card .lbl { font-size: 12px; color: var(--text3); }

/* ── Footer ─────────────────────────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: auto;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img.brand-logo-img {
  height: 28px; width: auto !important; border-radius: 0;
  object-fit: contain;
}
.footer-brand img:not(.brand-logo-img) { width: 28px; height: 28px; border-radius: 7px; }
.footer-copy { font-size: 13px; color: var(--text3); }

/* ── Hamburger menu (mobile only) ───────────────────────────────────────── */

.nav-hamburger {
  display: none;
  width: 36px; height: 36px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; padding: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.nav-hamburger span {
  display: block; width: 16px; height: 2px;
  background: var(--text); border-radius: 1px;
  transition: transform .2s, opacity .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile-quote-li { display: none; }

/* ── Responsive nav ─────────────────────────────────────────────────────── */

@media (max-width: 760px) {
  .nav-cta { display: none; }           /* hide the desktop "Get a Quote" pill */
  .nav-hamburger { display: flex; }     /* show the hamburger */

  .nav-links {
    display: none;                      /* hidden by default on mobile */
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
    flex-direction: column;
    gap: 0; padding: 12px 0;
    z-index: 100;
  }
  .nav-links.open { display: flex; }    /* shown when hamburger clicked */
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    border-left: 3px solid transparent;
  }
  .nav-links a:hover { background: var(--surf1); border-left-color: var(--blue); }
  .nav-mobile-quote-li { display: list-item; padding: 12px 24px; }
  .nav-mobile-quote-li a { padding: 0; border: none; }

  .admin-sidebar { display: none; }
  .admin-main { padding: 20px 16px; }
}

/* ── Flash messages ─────────────────────────────────────────────────────── */

.flash-list { list-style: none; padding: 0; margin-bottom: 20px; }
.flash-item {
  padding: 12px 16px; border-radius: var(--r-sm);
  font-size: 14px; margin-bottom: 8px;
}
.flash-success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2); color: var(--green); }
.flash-error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.2);  color: var(--red);   }

/* ── Utils ──────────────────────────────────────────────────────────────── */

.text-muted  { color: var(--text2); }
.text-small  { font-size: 13px; }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.w-full { width: 100%; }
textarea.form-control { min-height: 100px; resize: vertical; }

/* ── Select arrow ────────────────────────────────────────────────────────── */

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ── Chat widget (AI assistant) ─────────────────────────────────────────── */

#swift-chat {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 998;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

#swift-chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(79, 142, 247, 0.4);
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
}
#swift-chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(79, 142, 247, 0.5);
}
#swift-chat-toggle:active { transform: translateY(0); }

#swift-chat-icon-close { display: none; }
.swift-chat-open #swift-chat-icon-open { display: none; }
.swift-chat-open #swift-chat-icon-close { display: block; }

#swift-chat-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

#swift-chat-panel {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 360px;
  height: 480px;
  background: var(--surf1);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chatPanelIn .18s ease-out;
}
#swift-chat-panel[hidden] { display: none; }

@keyframes chatPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.swift-chat-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  color: white;
  padding: 14px 16px;
  flex-shrink: 0;
}
.swift-chat-header-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}
.swift-chat-header-status {
  font-size: 12px;
  opacity: 0.92;
  margin-top: 2px;
}

.swift-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surf1);
}
.swift-chat-messages::-webkit-scrollbar { width: 6px; }
.swift-chat-messages::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 3px;
}

.swift-chat-msg {
  display: flex;
  max-width: 85%;
}
.swift-chat-msg-bot  { align-self: flex-start; }
.swift-chat-msg-user { align-self: flex-end; }

.swift-chat-bubble {
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.45;
  word-wrap: break-word;
  white-space: pre-wrap;
}
.swift-chat-msg-bot .swift-chat-bubble {
  background: var(--surf2);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.swift-chat-msg-user .swift-chat-bubble {
  background: var(--blue);
  color: white;
  border-bottom-right-radius: 4px;
}
.swift-chat-bubble a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.swift-chat-msg-bot .swift-chat-bubble a { color: var(--blue2); }

.swift-chat-typing .swift-chat-bubble {
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
}
.swift-chat-typing .swift-chat-bubble span {
  width: 7px;
  height: 7px;
  background: var(--text2);
  border-radius: 50%;
  animation: chatTyping 1.2s infinite ease-in-out;
}
.swift-chat-typing .swift-chat-bubble span:nth-child(2) { animation-delay: 0.15s; }
.swift-chat-typing .swift-chat-bubble span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-3px); }
}

.swift-chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: var(--surf1);
  flex-shrink: 0;
}
#swift-chat-input {
  flex: 1;
  background: var(--surf2);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  color: var(--text);
  padding: 9px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease;
}
#swift-chat-input:focus { border-color: var(--blue); }
#swift-chat-input:disabled { opacity: 0.5; }

#swift-chat-send {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--blue);
  color: white;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
#swift-chat-send:hover:not(:disabled) { background: #3a7ad9; }
#swift-chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

.swift-chat-disclaimer {
  font-size: 11px;
  color: var(--text3);
  text-align: center;
  padding: 0 12px 10px;
  margin: 0;
  background: var(--surf1);
  flex-shrink: 0;
}
.swift-chat-disclaimer a { color: var(--text2); text-decoration: underline; }

@media (max-width: 600px) {
  #swift-chat { bottom: 16px; left: 16px; right: 16px; }
  #swift-chat-panel {
    position: fixed;
    bottom: 88px;
    left: 16px;
    right: 16px;
    width: auto;
    height: calc(100vh - 120px);
    max-height: 560px;
  }
}
