/* =========================================================
   ResponsaAI — Design tokens
   ========================================================= */
:root {
  --bg: #0a0e14;
  --surface: #0f1520;
  --surface-2: #141b28;
  --surface-3: #1a2332;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #eef2f7;
  --text-dim: #94a3b8;
  --text-faint: #64748b;
  --lime: #a3e635;
  --lime-dark: #84cc16;
  --lime-soft: rgba(163, 230, 53, 0.12);
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --shadow-lime: 0 8px 30px -8px rgba(163, 230, 53, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, textarea { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 96px 0; }

.bg-surface { background: var(--surface); }

.lime-text { color: var(--lime); }

.gradient-text {
  background: linear-gradient(100deg, var(--lime) 0%, #d9f99d 55%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: #0a0e14;
  box-shadow: var(--shadow-lime);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -8px rgba(163, 230, 53, 0.6); }

.btn-secondary {
  background: var(--surface-3);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--lime); background: var(--surface-2); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

.btn-lg { padding: 15px 28px; font-size: 15.5px; }

.full-width { width: 100%; }

.btn-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-icon:hover { background: var(--surface-3); color: var(--text); }

/* =========================================================
   Navbar
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 20, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px 2px rgba(163, 230, 53, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
}

.glow-bg {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 620px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.22) 0%, rgba(163, 230, 53, 0.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(163, 230, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0); }
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 17.5px;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 500;
}

/* =========================================================
   Free-text banner
   ========================================================= */
.freetext-section { padding: 0 0 64px; }

.freetext-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--lime);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}

.freetext-icon { font-size: 26px; line-height: 1; }

.freetext-text h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.freetext-text p { font-size: 14.5px; color: var(--text-dim); }
.freetext-text strong { color: var(--text); }

/* =========================================================
   Section headers
   ========================================================= */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-soft);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 15.5px;
  color: var(--text-dim);
}

/* =========================================================
   Grids
   ========================================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Scenario cards */
.scenario-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px 24px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scenario-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.6);
}

.scenario-card.highlight {
  border-color: rgba(163, 230, 53, 0.4);
  background: linear-gradient(160deg, rgba(163, 230, 53, 0.08), var(--surface-2) 60%);
}

.scenario-badge-top {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  background: var(--surface-3);
  padding: 4px 10px;
  border-radius: 999px;
}

.scenario-avatar {
  font-size: 30px;
  margin-top: 4px;
}

.scenario-card h3 { font-size: 17px; font-weight: 700; }

.scenario-goal { font-size: 13.5px; color: var(--text-dim); }
.scenario-goal strong { color: var(--text); }

.scenario-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-faint);
  padding: 10px 0 6px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* Mock store */
.mock-store-box {
  margin-top: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mock-store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 26px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.mock-store-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14.5px;
}

.store-icon { font-size: 18px; }

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--lime);
  font-weight: 600;
}

.mock-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.mock-prod {
  background: var(--surface);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-prod-img {
  font-size: 26px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

.mock-prod-title { font-size: 14.5px; font-weight: 700; }
.mock-prod-meta { font-size: 12px; color: var(--text-faint); }
.mock-prod-price { font-size: 16px; font-weight: 800; color: var(--lime); margin: 2px 0 6px; }

.btn-mini {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  text-align: left;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-mini:hover { border-color: var(--lime); color: var(--lime); }

/* =========================================================
   Comparison section
   ========================================================= */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.comp-box {
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid var(--border);
}

.comp-demo { background: var(--surface-2); }

.comp-real {
  background: linear-gradient(160deg, rgba(163, 230, 53, 0.1), var(--surface-2) 65%);
  border-color: rgba(163, 230, 53, 0.35);
}

.comp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.comp-header h3 { font-size: 17px; font-weight: 700; }

.tag-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--text-dim);
}

.tag-badge.popular-badge { background: var(--lime); color: #0a0e14; }

.comp-list li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.comp-list li:first-child { border-top: none; }
.comp-list strong { color: var(--text); }

/* =========================================================
   Pricing
   ========================================================= */
.pricing-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card.popular {
  border-color: rgba(163, 230, 53, 0.5);
  background: linear-gradient(160deg, rgba(163, 230, 53, 0.08), var(--surface-2) 60%);
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #0a0e14;
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 { font-size: 18px; font-weight: 800; }
.pricing-card .desc { font-size: 13.5px; color: var(--text-dim); }

.price {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 4px 0 8px;
}
.price span { font-size: 14px; font-weight: 600; color: var(--text-faint); }

.features-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.features-list li { font-size: 13.5px; color: var(--text-dim); }

/* =========================================================
   Contact
   ========================================================= */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-info h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 12px;
}

.contact-info > p { font-size: 14.5px; color: var(--text-dim); margin-bottom: 28px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; }

.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .icon { font-size: 18px; }
.contact-item .label { font-size: 12px; color: var(--text-faint); margin-bottom: 2px; }
.contact-item .link { font-size: 14.5px; font-weight: 600; color: var(--lime); }
.contact-item p { font-size: 14.5px; color: var(--text-dim); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dim); }

.form-group input,
.form-group textarea {
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--text);
  resize: vertical;
  transition: border-color 0.15s ease;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--lime); outline: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }

.form-status { font-size: 13.5px; min-height: 18px; }

/* =========================================================
   Footer
   ========================================================= */
.footer { padding: 48px 0 34px; border-top: 1px solid var(--border); }

.footer-content { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }

.footer-brand p { font-size: 13.5px; color: var(--text-faint); margin-top: 6px; max-width: 420px; }

.footer-bottom p { font-size: 12.5px; color: var(--text-faint); }

/* =========================================================
   Persona modal
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 12, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 20px;
}

.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-card {
  width: 100%;
  max-width: 460px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.2s ease;
}

.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }

.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.modal-header h3 { font-size: 17px; font-weight: 700; }

.modal-sub { font-size: 13.5px; color: var(--text-dim); margin-bottom: 20px; }

.modal-scenarios { display: flex; flex-direction: column; gap: 10px; }

.modal-scen-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.modal-scen-item:hover { border-color: var(--lime); background: var(--surface-3); }
.modal-scen-item.highlight { border-color: rgba(163, 230, 53, 0.4); }

.scen-icon { font-size: 20px; }

.modal-scen-item strong { font-size: 14px; display: block; margin-bottom: 3px; }
.modal-scen-item p { font-size: 12.5px; color: var(--text-dim); }

/* =========================================================
   Chat widget
   ========================================================= */
.chat-widget-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.chat-toggle-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--lime);
  color: #0a0e14;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lime);
  transition: transform 0.18s ease;
  order: 2;
}
.chat-toggle-btn:hover { transform: scale(1.06); }

.chat-toggle-btn .icon-close { display: none; }
.chat-widget-wrapper.open .chat-toggle-btn .icon-open { display: none; }
.chat-widget-wrapper.open .chat-toggle-btn .icon-close { display: block; }

.chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.chat-window {
  order: 1;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 750px;
  max-height: calc(100vh - 80px);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  resize: vertical;
}

.chat-widget-wrapper.open .chat-window {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.chat-avatar-status { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.agent-name { font-size: 13.5px; font-weight: 700; }

.agent-status { font-size: 11.5px; color: var(--text-faint); display: flex; align-items: center; gap: 5px; }

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.chat-controls { display: flex; gap: 4px; }

.persona-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--lime-soft);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.hud-left { display: flex; gap: 6px; align-items: baseline; }
.hud-label { color: var(--text-faint); }
.hud-name { font-weight: 700; color: var(--text); }

.hud-right { display: flex; align-items: center; gap: 10px; }
.hud-badge {
  background: var(--surface-3);
  color: var(--lime);
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
}
.hud-switch-btn { font-size: 11.5px; font-weight: 700; color: var(--lime); }

.prompt-category-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.cat-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--surface-2);
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.cat-btn.active { background: var(--lime); color: #0a0e14; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msg {
  max-width: 88%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
}

.msg-bot {
  align-self: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.msg-user {
  align-self: flex-end;
  background: var(--lime);
  color: #0a0e14;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}

.typing-bubble { display: flex; gap: 4px; padding: 14px 16px; }

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-faint);
  animation: typing 1.1s infinite ease-in-out;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.quick-chips {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap; /* Ændret fra 'wrap' til 'nowrap' så de bliver på én linje */
  overflow-x: auto; /* Gør rækken scrollbar vandret */
  padding: 0 16px 12px;
  /* Skjuler selve scrollbaren for et renere look (men bevarer scroll-funktionen) */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.quick-chips::-webkit-scrollbar {
  display: none; /* Skjuler scrollbar i Chrome/Safari */
}

.chip {
  font-size: 11.5px; /* Gjort en anelse mindre for at spare plads */
  font-weight: 500;
  color: var(--text-dim);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  padding: 6px 10px; /* Lidt mindre padding */
  border-radius: 999px;
  transition: border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap; /* Tvinger teksten til at blive på én linje */
  flex-shrink: 0; /* Forhindrer at knapperne bliver mast sammen */
}
.chip:hover { border-color: var(--lime); color: var(--lime); }

.freetext-tip-bar {
  padding: 9px 16px;
  font-size: 11.5px;
  color: var(--text-faint);
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}
.freetext-tip-bar strong { color: var(--text-dim); }

.chat-input-area {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}

.chat-input-area input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 13.5px;
  color: var(--text);
}
.chat-input-area input:focus { outline: none; border-color: var(--lime); }
.chat-input-area input::placeholder { color: var(--text-faint); }

.btn-send {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: #0a0e14;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.btn-send:hover { transform: scale(1.06); }

/* =========================================================
   Content generated inside bot messages
   ========================================================= */
.tech-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  font-size: 12px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  overflow: hidden;
}
.tech-compare-table th,
.tech-compare-table td {
  padding: 7px 9px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.tech-compare-table th {
  background: var(--surface-3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dim);
}
.tech-compare-table tr:last-child td { border-bottom: none; }

.product-card {
  margin-top: 10px;
  padding: 12px 14px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
}
.product-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--lime);
  background: var(--lime-soft);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.product-title { font-size: 13px; font-weight: 700; }
.product-price { font-size: 14px; font-weight: 800; color: var(--lime); margin: 3px 0 8px; }
.product-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0a0e14;
  background: var(--lime);
  padding: 7px 12px;
  border-radius: 999px;
}

.tracking-box {
  margin-top: 8px;
  padding: 12px 14px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
}
.tracking-step { font-size: 12.5px; font-weight: 600; margin-bottom: 8px; }
.tracking-bar {
  height: 5px;
  background: var(--surface);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.tracking-progress {
  width: 62%;
  height: 100%;
  background: var(--lime);
  border-radius: 999px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 920px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn) { display: none; }
  .comparison-grid,
  .contact-box { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .mock-products-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
}

@media (max-width: 560px) {
  .section-padding { padding: 64px 0; }
  .hero { padding: 90px 0 60px; }
  .contact-box { padding: 28px; }
  .chat-widget-wrapper { right: 14px; bottom: 14px; }
  .chat-window { width: calc(100vw - 28px); height: 72vh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}