:root {
  --bg: #0f172a;
  --surface: #111827;
  --card: rgba(255, 255, 255, 0.04);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #f97316;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 10px;
  --radius-sm: 8px;
  --max-width: 1200px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    "Noto Sans",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}
img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
  padding-top: 110px;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.profile__header {
  margin-bottom: 24px;
}
.profile-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.profile-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.profile-item--active {
  border-color: var(--accent);
}
.profile-tabs {
  display: flex;
  gap: 10px;
  margin: 12px 0 20px;
}
.profile-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  cursor: pointer;
}
.profile-tab--active {
  border-color: var(--accent);
  color: var(--accent);
}
.profile-section {
  width: 100%;
}
.profile-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.profile-data-section {
  margin-top: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.profile-data-section h4 {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.profile-inline-form {
  margin-top: 8px;
}
.profile-inline-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.btn--sm {
  padding: 4px 10px !important;
  font-size: 0.75rem !important;
}
.is-hidden {
  display: none;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.navbar__logo {
  width: 140px;
  height: auto;
  pointer-events: none;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.navbar__group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__dropdown {
  position: relative;
  z-index: 25;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: rgba(17, 24, 39, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  display: none;
  z-index: 100;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
  visibility: hidden;
}

.navbar__dropdown.is-open .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-item {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition:
    background 0.15s ease,
    color 0.15s ease;
  cursor: pointer;
  user-select: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
}

.navbar__link,
.navbar__dropdown-toggle {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
  position: relative;
  z-index: 24;
}
.navbar__link:hover,
.navbar__dropdown-toggle:hover,
.navbar__link--active,
.navbar__dropdown-toggle[aria-expanded="true"] {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-select {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-weight: 600;
}

.btn {
  background: linear-gradient(120deg, #0ea5e9, var(--accent));
  color: #0b0f1c;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.btn:hover {
  background: linear-gradient(120deg, #38bdf8, var(--accent));
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: none;
}

.hero {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.4px;
}

.hero__title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 12px 0 10px;
}

.hero__subtitle {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.kpi-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.kpi {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  min-width: 140px;
}

.kpi strong {
  display: block;
  font-size: 1.1rem;
}

.section {
  margin-top: 40px;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.section__title {
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius);
  transition:
    transform 0.15s ease,
    border 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.4);
}

.card__title {
  margin: 0 0 8px;
  font-weight: 700;
}

.card__desc {
  margin: 0;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  color: var(--muted);
}

.list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: none;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq__answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.banner {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 24px 0 40px;
}

.footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  color: var(--muted);
}

.footer__title {
  margin: 0 0 8px;
  color: var(--text);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  padding: 6px 0;
}

.tagline {
  display: inline-block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  margin-top: 8px;
}

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s ease;
}

.hamburger:hover {
  color: var(--text);
  border-color: var(--accent);
}

.live-time {
  font-family: "Courier New", monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .navbar__links {
    display: none;
  }

  .navbar.is-open .navbar__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    max-width: calc(100vw - 24px);
    background: rgba(17, 24, 39, 0.98);
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    z-index: 50;
    overflow-x: hidden;
  }

  .navbar__group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .navbar__link {
    width: 100%;
    padding: 10px 12px;
    text-align: left;
  }

  .navbar__dropdown {
    width: 100%;
  }

  .navbar__dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
  }

  .navbar__actions {
    margin-left: auto;
  }

  .hamburger {
    display: block;
  }
}

.chat-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5000;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
}

.chat-container {
  width: 100%;
  max-width: 480px;
  height: 580px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.chat-header {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  margin: 0;
  font-size: 1.15rem;
}

.chat-status {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-status__title {
  font-size: 1.25rem;
  font-weight: 600;
}

.chat-status__state {
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-status__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.chat-status--ok .chat-status__state {
  color: #22c55e;
}

.chat-status--ok .chat-status__dot {
  background: #22c55e;
}

.chat-status--guest .chat-status__state {
  color: #f59e0b;
}

.chat-status--guest .chat-status__dot {
  background: #f59e0b;
}

.chat-close {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  max-width: 90%;
}

.chat-msg small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.chat-msg p {
  margin: 0;
  word-wrap: break-word;
  font-size: 1rem;
}

.chat-msg--user {
  align-self: flex-end;
  background: var(--accent);
  color: #0b0f1c;
}

.chat-msg--user small {
  color: rgba(11, 15, 28, 0.7);
}

.chat-msg--bot {
  align-self: flex-start;
  background: rgba(59, 130, 246, 0.15);
  color: var(--text);
  border-left: 3px solid #3b82f6;
}

.chat-msg--bot small {
  color: #3b82f6;
}

.chat-msg--assistant {
  align-self: flex-start;
  background: rgba(34, 197, 94, 0.15);
  color: var(--text);
  border-left: 3px solid #22c55e;
}

.chat-msg--assistant small {
  color: #22c55e;
}

/* Consultant tak/nie buttons */
.chat-consultant-btns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.chat-consultant-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface, #2a2d3a);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.chat-consultant-btn:hover {
  background: var(--accent);
  color: #0b0f1c;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.chat-consultant-btn:active {
  transform: translateY(0);
}

.chat-consultant-btn .chat-btn-icon {
  font-size: 1rem;
}

.chat-consultant-btn--used {
  background: var(--surface, #2a2d3a);
  color: var(--muted);
  border-color: var(--border);
  cursor: default;
  opacity: 0.5;
}

.chat-consultant-btn--used:hover {
  background: var(--surface, #2a2d3a);
  color: var(--muted);
  border-color: var(--border);
  transform: none;
}

.chat-tag-selector {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(249, 115, 22, 0.05);
}

.chat-tag-select {
  width: 100%;
  padding: 10px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.chat-tag-select:hover {
  border-color: var(--accent);
}

.chat-tag-select:focus {
  outline: none;
  border-color: var(--accent);
}

.typing-dots {
  display: inline-flex;
  gap: 4px;
}

.typing-dots span {
  animation: typing-dot 1.4s infinite;
  opacity: 0.4;
}

.typing-dots span:nth-child(1) {
  animation-delay: 0s;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-dot {
  0%,
  60%,
  100% {
    opacity: 0.4;
  }
  30% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .page {
    padding: 16px;
    padding-top: 100px;
  }

  .chat-modal {
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

  .chat-container {
    width: 100%;
    max-width: none;
    height: 70vh;
    max-height: 600px;
  }

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

  .profile-data-row {
    flex-direction: row;
    justify-content: space-between;
  }

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

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

  .section__header {
    flex-direction: column;
  }

  .hero {
    flex-direction: column;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .auth-section {
    padding: 20px 16px;
  }

  .auth-input {
    font-size: 16px !important;
  }

  .navbar__logo {
    width: 100px;
  }

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

  .kpi-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .page {
    padding: 12px;
    padding-top: 90px;
  }

  .chat-container {
    height: 80vh;
    max-height: 100%;
  }

  .chat-messages {
    padding: 8px;
  }

  .chat-msg {
    max-width: 95%;
    font-size: 0.9rem;
  }

  .chat-input {
    font-size: 16px !important;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  .navbar {
    padding: 10px 12px;
    gap: 10px;
  }

  .navbar__brand {
    gap: 6px;
  }

  .navbar__logo {
    width: 80px;
  }

  .navbar__actions {
    flex-direction: column;
    gap: 8px;
  }

  .btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .card {
    padding: 12px;
  }

  .profile-panel {
    padding: 12px;
  }

  .profile-data-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .profile-data-row span {
    font-weight: 600;
  }

  .profile-data-row strong {
    word-break: break-all;
  }

  .auth-form {
    width: 100%;
  }

  .footer__grid {
    padding: 0 12px;
  }
}

.chat-input-wrap {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--border);
}

.chat-input {
  flex: 1;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 1rem;
}

.chat-input:focus {
  outline: none;
  border-color: var(--accent);
}

.chat-send {
  background: var(--accent);
  color: #0b0f1c;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.chat-send:hover {
  transform: translateY(-2px);
}

.chat-leave {
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.chat-leave:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

.chat-closed-info {
  padding: 20px;
  text-align: center;
  background: #1e293b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-info-bar {
  padding: 8px 14px;
  background: #1e293b;
  border-top: 1px solid #334155;
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  line-height: 1.5;
}

.chat-info-bar .info-bar-timer {
  display: block;
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.8rem;
}

.chat-info-bar .info-bar-msg {
  display: block;
  color: #94a3b8;
  font-size: 0.7rem;
  margin-top: 2px;
}

.chat-info-bar .info-bar-offline {
  display: block;
  color: #ef4444;
  font-size: 0.75rem;
}

.chat-limit-bar {
  padding: 8px 14px;
  background: #450a0a;
  border-top: 1px solid #991b1b;
  font-size: 0.75rem;
  color: #fca5a5;
  text-align: center;
  font-weight: 500;
}

.chat-msg-counter {
  padding: 4px 14px;
  background: #1e293b;
  border-top: 1px solid #334155;
  font-size: 0.7rem;
  color: #9ca3af;
  text-align: right;
}

.chat-msg-counter .counter-current {
  color: #f97316;
  font-weight: 700;
}

.chat-msg-counter .counter-limit {
  color: #64748b;
}

.chat-msg-counter.near-limit {
  color: #f59e0b;
}

.chat-msg-counter.at-limit {
  color: #ef4444;
  font-weight: 600;
}

.chat-closed-info p {
  color: #9ca3af;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.kpi--chat {
  cursor: pointer;
  border: 2px solid var(--accent) !important;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.15) 0%,
    rgba(249, 115, 22, 0.05) 100%
  );
  transition: background 0.3s ease;
  padding: 14px 20px;
  min-width: 160px;
  position: relative;
}

.kpi--chat strong {
  font-size: 1.4rem;
}

.kpi--chat span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.kpi--chat-register {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 260px;
}

.kpi--chat-register span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.kpi--chat:hover {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.3) 0%,
    rgba(249, 115, 22, 0.15) 100%
  ) !important;
  border-color: var(--accent) !important;
}

.footer__status {
  color: var(--muted);
  font-size: 0.9rem;
}
.visit-count {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.auth-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
}
.auth-input--last {
  margin-bottom: 18px;
}
.auth-btn {
  width: 100%;
}
.auth-link {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
}

.auth-link a {
  color: var(--accent);
}

.auth-message {
  margin-top: 12px;
  text-align: center;
}

/* Honeypot fields - completely hidden from humans */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

/* Registration verify code row */
.reg-verify-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.reg-verify-row .btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: 13px;
}
.verify-status {
  font-size: 13px;
  line-height: 1.3;
}

.auth-section {
  max-width: 420px;
  margin: 60px auto;
}
.margin-top-8 {
  margin-top: 8px;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-top-16 {
  margin-top: 16px;
}
.margin-top-18 {
  margin-top: 18px;
}
.margin-top-24 {
  margin-top: 24px;
}
.gap-14 {
  gap: 14px;
}
.chat-promo {
  margin-top: 24px;
  padding: 28px;
  background: var(--card);
  border-radius: var(--radius-md);
}

.chat-promo__header {
  text-align: center;
  margin-bottom: 24px;
}

.chat-promo__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--fg);
}

.chat-promo__desc {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.chat-promo__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.chat-promo__feature {
  padding: 20px;
  text-align: center;
}

.chat-promo__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.chat-promo__feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--accent);
}

.chat-promo__feature-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-promo__footer {
  text-align: center;
}

.chat-promo__cta {
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.3s ease;
}

.chat-promo__cta:hover {
  background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
}

.chat-promo__note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .chat-promo {
    padding: 20px;
  }

  .chat-promo__title {
    font-size: 1.3rem;
  }

  .chat-promo__features {
    grid-template-columns: 1fr;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  padding: 16px;
  z-index: 10000;
  animation: slideUp 0.3s ease out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: #f0f0f0;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner__link,
.cookie-banner__btn {
  padding: 8px 14px;
  font-size: 0.9rem;
  border: 1px solid #555;
  background: transparent;
  color: #f0f0f0;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.cookie-banner__link:hover,
.cookie-banner__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #999;
}

.cookie-banner__btn--accept {
  background: rgba(34, 197, 94, 0.2);
  border-color: #22c55e;
  color: #22c55e;
}

.cookie-banner__btn--accept:hover {
  background: rgba(34, 197, 94, 0.3);
}

.cookie-banner__btn--reject {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ef4444;
}

.cookie-banner__btn--reject:hover {
  background: rgba(239, 68, 68, 0.3);
}

@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__link,
  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}

