/* ============================================================
   RTM Fulfilment — gedeelde styling
   Modern Tech Minimal · ink/royal/azure palette
   ============================================================ */

:root {
  --ink: #0F172A;
  --ink-soft: #1E293B;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --canvas: #FAFBFC;
  --white: #FFFFFF;
  --royal: #1D4ED8;
  --royal-dark: #1E40AF;
  --azure: #60A5FA;
  --ice: #DBEAFE;
  --ice-soft: #EFF6FF;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 1px 2px rgba(15,23,42,0.04), 0 8px 24px rgba(15,23,42,0.06);
  --shadow-lg: 0 1px 2px rgba(15,23,42,0.04), 0 24px 48px rgba(15,23,42,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink); background: var(--canvas);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; letter-spacing: -0.035em; line-height: 1.05; color: var(--ink); }
h1 { font-size: clamp(36px, 4.6vw, 60px); font-weight: 700; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 600; line-height: 1.25; letter-spacing: -0.02em; }
h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--royal); }
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--royal); }

.gradient-text {
  background: linear-gradient(90deg, var(--royal) 0%, var(--azure) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--slate-500); line-height: 1.6; max-width: 620px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-family: inherit; font-weight: 500; font-size: 15px;
  cursor: pointer; border: none; transition: all 0.2s;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--royal); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--slate-200); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); padding: 8px 0; }
.btn-ghost:hover { color: var(--royal); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ HEADER ============ */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 251, 252, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--slate-200);
}
header.site .container { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -0.02em; font-size: 19px; color: var(--ink); }
.logo-mark { width: 32px; height: 32px; border-radius: 8px; background: var(--ink); color: var(--white); display: grid; place-items: center; font-size: 13px; font-weight: 700; letter-spacing: 0; }
nav.primary { display: flex; gap: 28px; }
nav.primary a { color: var(--slate-700); font-weight: 500; font-size: 14.5px; transition: color 0.15s; }
nav.primary a:hover, nav.primary a.active { color: var(--ink); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .phone { font-size: 14px; color: var(--slate-500); font-weight: 500; }
.header-cta .phone:hover { color: var(--ink); }
.header-cta .lang { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--slate-700); font-weight: 500; padding: 6px 10px; border-radius: 6px; }
.header-cta .lang svg { border-radius: 2px; }
.header-cta .login { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 8px; font-size: 14px; color: var(--slate-700); font-weight: 500; transition: all 0.15s; }
.header-cta .login:hover { color: var(--ink); background: var(--slate-100); }
.header-cta .demo-btn { font-size: 14px; padding: 10px 16px; gap: 6px; }
.header-cta .demo-btn svg { color: var(--royal); }
.header-cta .btn-primary { font-size: 14px; padding: 10px 18px; }

/* ============ SECTIONS ============ */
section { padding: 100px 0; }
section.tight { padding: 80px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { margin-top: 16px; }
.section-head .lead { margin-top: 20px; }

/* ============ PAGE HERO (innerlijke hero voor sub-pagina's) ============ */
.page-hero { position: relative; padding: 100px 0 60px; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--ice) 0%, transparent 60%);
  z-index: 0; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-top: 28px; margin-bottom: 24px; max-width: 900px; }
.page-hero .lead { margin-bottom: 32px; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; color: var(--slate-500); margin-bottom: 12px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--slate-400); }

/* ============ MARQUEE ============ */
.marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); }
.marquee-track { display: flex; gap: 72px; align-items: center; width: max-content; animation: scroll-left 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 36px; width: auto; flex-shrink: 0; transition: transform 0.25s; }
.marquee-track img:hover { transform: scale(1.08); }
.marquee-track.lg img { height: 52px; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 36px)); }
}
@keyframes scroll-right {
  from { transform: translateX(calc(-50% - 36px)); }
  to { transform: translateX(0); }
}
.marquee-track.reverse { animation-name: scroll-right; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============ CARDS & TILES ============ */
.card {
  background: var(--white); padding: 32px 28px;
  border: 1px solid var(--slate-200); border-radius: var(--radius-md);
  transition: all 0.25s; position: relative;
}
.card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card .ic {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--ice-soft); color: var(--royal);
  display: grid; place-items: center; margin-bottom: 24px;
}
.card .ic svg { width: 22px; height: 22px; stroke-width: 1.5; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--slate-500); line-height: 1.6; }
.card .more { display: inline-flex; margin-top: 18px; font-size: 13.5px; font-weight: 500; color: var(--ink); align-items: center; gap: 4px; }
.card .more::after { content: '→'; transition: transform 0.2s; }
.card:hover .more::after { transform: translateX(3px); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ============ FORM ELEMENTS ============ */
.form-field { display: block; margin-bottom: 14px; }
.form-field .lbl { display: block; font-size: 12px; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; letter-spacing: 0.01em; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px;
  background: var(--slate-100);
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit; font-size: 14.5px;
  color: var(--ink); transition: all 0.15s;
  appearance: none; -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--slate-400); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; background: var(--white);
  border-color: var(--royal);
  box-shadow: 0 0 0 4px var(--ice-soft);
}
.form-field select {
  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 fill='%2364748B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.form-field textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ============ STATS ============ */
.stats-wrap { width: 100%; padding: 60px 32px 0; }
.stats {
  max-width: 1600px; margin: 0 auto;
  background: var(--ink); color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px clamp(28px, 4vw, 64px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 48px);
  position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 60%);
}
.stat { position: relative; min-width: 0; }
.stat .num { font-family: 'Manrope', sans-serif; font-size: clamp(34px, 3.6vw, 50px); font-weight: 700; letter-spacing: -0.035em; line-height: 1; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.stat .num sup { font-size: 0.42em; color: var(--azure); font-weight: 500; vertical-align: super; }
.stat .num .google-g { width: 0.7em; height: 0.7em; margin-left: 4px; vertical-align: baseline; flex-shrink: 0; align-self: center; }
.stat .label { margin-top: 10px; font-size: 13.5px; color: rgba(255,255,255,0.6); letter-spacing: 0.01em; line-height: 1.4; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--ink) 0%, #1E3A8A 100%);
  color: var(--white); border-radius: var(--radius-lg);
  padding: 100px 60px; position: relative; overflow: hidden;
  text-align: center;
}
.final-cta::before, .final-cta::after { content: ''; position: absolute; border-radius: 50%; }
.final-cta::before { top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(96,165,250,0.18) 0%, transparent 60%); }
.final-cta::after { bottom: -150px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(29,78,216,0.15) 0%, transparent 60%); }
.final-cta * { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); max-width: 720px; margin: 0 auto 20px; }
.final-cta .lead { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 36px; }
.final-cta .btn-primary { background: var(--white); color: var(--ink); padding: 16px 32px; font-size: 16px; }
.final-cta .btn-primary:hover { background: var(--ice); }
.final-cta .btn-ghost { color: rgba(255,255,255,0.85); margin-left: 12px; }
.final-cta .btn-ghost:hover { color: var(--white); }

/* ============ FOOTER ============ */
footer.site { padding: 80px 0 32px; border-top: 1px solid var(--slate-200); margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 14.5px; color: var(--slate-500); margin: 16px 0 24px; max-width: 320px; line-height: 1.6; }
.footer-brand .social { display: flex; gap: 10px; }
.footer-brand .social a { width: 36px; height: 36px; border-radius: 8px; background: var(--slate-100); display: grid; place-items: center; transition: all 0.2s; color: var(--slate-700); }
.footer-brand .social a:hover { background: var(--ink); color: var(--white); }
.footer-col h5 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-500); font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--slate-700); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--slate-200); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--slate-500); flex-wrap: wrap; gap: 16px; }
.footer-bottom .links { display: flex; gap: 24px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .stats { grid-template-columns: repeat(2, 1fr); padding: 32px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav.primary { display: none; }
  .header-cta .lang, .header-cta .login { display: none; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .page-hero { padding: 60px 0 30px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px; }
  .final-cta { padding: 60px 28px; border-radius: var(--radius-md); }
  .header-cta .phone { display: none; }
  .header-cta .demo-btn { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ============ RTM Chatbot Widget ============ */
.bot-wrap {
  position: fixed; bottom: 22px; right: 22px;
  z-index: 999;
}

/* --- Floating chat button --- */
.bot-fab {
  position: relative;
  display: inline-flex; align-items: center; gap: 0;
  height: 56px; padding: 0;
  background: linear-gradient(135deg, var(--royal, #1D4ED8) 0%, var(--azure, #60A5FA) 100%);
  color: #FFFFFF;
  border: none; cursor: pointer;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.35), 0 2px 6px rgba(15,23,42,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.25s ease;
  overflow: hidden;
  font: inherit;
}
.bot-fab .bot-fab-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bot-fab .bot-fab-label {
  max-width: 0; opacity: 0; overflow: hidden; white-space: nowrap;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14.5px;
  transition: max-width 0.3s ease, opacity 0.2s ease, padding 0.25s ease;
}
.bot-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(29, 78, 216, 0.45), 0 4px 10px rgba(15,23,42,0.2);
  padding-right: 4px;
}
.bot-fab:hover .bot-fab-label { max-width: 160px; opacity: 1; padding-left: 12px; padding-right: 8px; }
.bot-fab:focus-visible { outline: 3px solid rgba(29, 78, 216, 0.45); outline-offset: 3px; }
.bot-fab.open { transform: rotate(90deg); }
.bot-fab.open .bot-fab-label { max-width: 0; opacity: 0; padding: 0; }
.bot-fab::before {
  content: ''; position: absolute; inset: 0; border-radius: 999px;
  animation: botPulse 2.4s ease-out infinite;
  pointer-events: none;
}
.bot-fab.open::before { animation: none; }
@keyframes botPulse {
  0%   { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(96, 165, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}
.bot-fab-badge {
  position: absolute; top: 6px; right: 6px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: #EF4444; color: #FFFFFF;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px #FFFFFF;
}

/* --- Het chat-paneel --- */
.bot-panel {
  position: absolute;
  bottom: 72px; right: 0;
  width: 380px; max-width: calc(100vw - 32px);
  height: 560px; max-height: calc(100vh - 120px);
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(15,23,42,0.22), 0 4px 12px rgba(15,23,42,0.08);
  overflow: hidden;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(10px) scale(0.97);
  transition: opacity 0.22s ease, transform 0.26s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}
.bot-panel.open { opacity: 1; transform: translateY(0) scale(1); }

/* Header */
.bot-head {
  background: linear-gradient(135deg, var(--ink, #0F172A) 0%, #1E3A8A 100%);
  color: #FFFFFF;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
  position: relative; flex-shrink: 0;
}
.bot-head-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--royal, #1D4ED8) 0%, var(--azure, #60A5FA) 100%);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.bot-head-meta { flex: 1; min-width: 0; }
.bot-head-meta strong {
  display: block;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em;
}
.bot-head-meta small {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.72);
  margin-top: 2px;
}
.bot-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: botStatusPulse 2s ease-in-out infinite;
}
@keyframes botStatusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}
.bot-head-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.12);
  border: none; border-radius: 50%;
  color: #FFFFFF; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.bot-head-close:hover { background: rgba(255,255,255,0.22); }
.bot-head-close:focus-visible { outline: 2px solid rgba(255,255,255,0.6); outline-offset: 2px; }

/* Message stream */
.bot-stream {
  flex: 1; min-height: 0;
  overflow-y: auto;
  padding: 18px 16px 8px;
  background: #FAFBFC;
  display: flex; flex-direction: column; gap: 8px;
  scroll-behavior: smooth;
}
.bot-stream::-webkit-scrollbar { width: 6px; }
.bot-stream::-webkit-scrollbar-thumb { background: rgba(15,23,42,0.12); border-radius: 999px; }

.bot-msg {
  display: flex; max-width: 88%;
  animation: botFadeIn 0.22s ease-out;
}
@keyframes botFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bot-msg-bot { align-self: flex-start; }
.bot-msg-user { align-self: flex-end; }

.bot-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px; line-height: 1.5;
  word-wrap: break-word;
}
.bot-msg-bot .bot-bubble {
  background: #FFFFFF;
  color: var(--ink, #0F172A);
  border: 1px solid var(--slate-200, #E2E8F0);
  border-bottom-left-radius: 4px;
}
.bot-msg-user .bot-bubble {
  background: linear-gradient(135deg, var(--royal, #1D4ED8) 0%, var(--azure, #60A5FA) 100%);
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
}
.bot-bubble strong { font-weight: 700; }

/* Typing indicator */
.bot-typing .bot-bubble {
  display: inline-flex; gap: 4px; padding: 12px 16px;
}
.bot-typing .bot-bubble span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--slate-400, #94A3B8);
  animation: botTypeDot 1.2s infinite ease-in-out;
}
.bot-typing .bot-bubble span:nth-child(2) { animation-delay: 0.15s; }
.bot-typing .bot-bubble span:nth-child(3) { animation-delay: 0.3s; }
@keyframes botTypeDot {
  0%, 60%, 100% { opacity: 0.3; transform: scale(0.85); }
  30% { opacity: 1; transform: scale(1); }
}

/* Quick replies */
.bot-replies {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 8px 16px 12px;
  border-top: 1px solid var(--slate-100, #F1F5F9);
  background: #FFFFFF;
  flex-shrink: 0;
  max-height: 200px; overflow-y: auto;
}
.bot-qr {
  padding: 8px 14px;
  background: var(--slate-100, #F1F5F9);
  border: 1px solid var(--slate-200, #E2E8F0);
  border-radius: 999px;
  color: var(--ink, #0F172A);
  font: inherit; font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.bot-qr:hover {
  background: var(--ice, #DBEAFE);
  border-color: var(--royal, #1D4ED8);
  transform: translateY(-1px);
}
.bot-qr:focus-visible { outline: 2px solid var(--royal, #1D4ED8); outline-offset: 2px; }

/* Capture form (lead) */
.bot-capture {
  display: flex; gap: 8px; align-items: center;
  width: 100%;
}
.bot-capture input,
.bot-capture textarea {
  flex: 1; min-width: 0;
  padding: 10px 14px;
  border: 1px solid var(--slate-200, #E2E8F0);
  border-radius: 12px;
  font: inherit; font-size: 14px;
  background: #FFFFFF;
  color: var(--ink, #0F172A);
  resize: none;
}
.bot-capture input:focus,
.bot-capture textarea:focus {
  outline: none; border-color: var(--royal, #1D4ED8);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}
.bot-capture-send {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--royal, #1D4ED8);
  border: none; border-radius: 50%;
  color: #FFFFFF; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.bot-capture-send:hover { background: var(--royal-dark, #1E40AF); transform: scale(1.05); }
.bot-capture-send:focus-visible { outline: 2px solid var(--royal, #1D4ED8); outline-offset: 2px; }

/* Footer */
.bot-foot {
  padding: 8px 16px;
  border-top: 1px solid var(--slate-100, #F1F5F9);
  background: #FAFBFC;
  text-align: center;
  flex-shrink: 0;
}
.bot-foot small {
  font-size: 11px; color: var(--slate-500, #64748B);
}
.bot-foot a { color: var(--royal, #1D4ED8); font-weight: 500; }

@media (max-width: 640px) {
  .bot-wrap { bottom: 16px; right: 16px; }
  .bot-fab, .bot-fab .bot-fab-icon { width: 52px; height: 52px; }
  .bot-fab:hover .bot-fab-label { max-width: 0; opacity: 0; padding: 0; }
  .bot-fab:hover { padding-right: 0; }
  .bot-panel {
    width: calc(100vw - 32px);
    height: calc(100vh - 100px);
    bottom: 68px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bot-fab::before, .bot-status-dot, .bot-msg, .bot-typing .bot-bubble span { animation: none; }
  .bot-fab, .bot-panel, .bot-qr, .bot-capture-send { transition: none; }
}
