/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #1A3A5C;
  --blue-dark: #0D1B2A;
  --orange: #E8733A;
  --orange-hover: #d4612e;
  --bg-light: #F8F9FA;
  --bg-white: #ffffff;
  --text: #2D3436;
  --text-secondary: #636E72;
  --text-light: #F8F9FA;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

h1, h2, h3 { font-family: 'DM Sans', sans-serif; line-height: 1.15; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; }

p { color: var(--text-secondary); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 760px; }
.text-center { text-align: center; }
.text-light { color: var(--text-light); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: #15304d; }
.btn-accent { background: var(--orange); color: white; }
.btn-accent:hover { background: var(--orange-hover); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-nav { background: var(--orange); color: white; padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-nav:hover { background: var(--orange-hover); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'DM Sans', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em;
  color: var(--blue); text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 4px;
  background: none; border: 1px solid #ddd; border-radius: 6px;
  padding: 5px 10px; cursor: pointer; font-size: 0.8rem; font-weight: 600;
  color: var(--text); font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}
.lang-btn:hover { border-color: var(--orange); }
.lang-btn svg { margin-top: 1px; }
.lang-dropdown {
  position: absolute; top: 100%; right: 0; margin-top: 4px;
  background: white; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 140px; overflow: hidden; z-index: 200;
  display: none;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: block; width: 100%; padding: 8px 14px; border: none; background: none;
  text-align: left; font-size: 0.85rem; cursor: pointer; font-family: 'DM Sans', sans-serif;
  color: var(--text); transition: background 0.15s;
}
.lang-option:hover { background: var(--bg-light); }
.lang-option.active { color: var(--orange); font-weight: 600; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 80px 0 60px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('city-bg.png') center center / cover no-repeat;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.75) 0%, rgba(26,58,92,0.55) 40%, rgba(13,27,42,0.65) 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,115,58,0.12), transparent 60%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 1140px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 4rem;
}
.hero-text { flex: 1; }
.hero-text h1 { color: white; margin-bottom: 1.25rem; }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 1.15rem; margin-bottom: 2rem; }

/* ===== PHONE ===== */
.phone-wrapper {
  flex: 0 0 auto;
  position: relative;
  /* Space for side buttons */
  padding: 0 8px;
}

.phone {
  width: 320px; height: 650px;
  background: #ffffff;
  border-radius: 44px;
  border: 3px solid #2a2a2a;
  box-shadow:
    0 0 0 1px #111,
    0 0 0 4px #3a3a3a,
    0 0 0 5px #111,
    inset 0 0 4px rgba(0,0,0,0.3),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 100px rgba(232,115,58,0.08);
  display: flex; flex-direction: column;
  overflow: hidden; position: relative;
  z-index: 2;
}

/* Side buttons - left (silent switch + volume) */
.phone::before {
  content: '';
  position: absolute;
  left: -8px; top: 100px;
  width: 4px; height: 28px;
  background: linear-gradient(to bottom, #4a4a4a, #2a2a2a, #4a4a4a);
  border-radius: 2px 0 0 2px;
  box-shadow:
    0 32px 0 0 #3a3a3a,
    0 32px 0 0 #3a3a3a,
    inset 1px 0 0 rgba(255,255,255,0.1);
  z-index: 1;
}

/* Volume buttons */
.phone-vol-up, .phone-vol-down {
  position: absolute;
  left: -8px;
  width: 4px;
  background: linear-gradient(to bottom, #4a4a4a, #2a2a2a, #4a4a4a);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 1px 0 0 rgba(255,255,255,0.08);
  z-index: 1;
}
.phone-vol-up { top: 148px; height: 44px; }
.phone-vol-down { top: 200px; height: 44px; }

/* Side button - right (power) */
.phone::after {
  content: '';
  position: absolute;
  right: -8px; top: 170px;
  width: 4px; height: 64px;
  background: linear-gradient(to bottom, #4a4a4a, #2a2a2a, #4a4a4a);
  border-radius: 0 2px 2px 0;
  box-shadow: inset -1px 0 0 rgba(255,255,255,0.08);
  z-index: 1;
}

/* Dynamic Island */
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 5;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.8);
}
/* Camera dot */
.phone-notch::before {
  content: '';
  position: absolute;
  right: 20px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a2a4a, #0a0a1a);
  box-shadow: inset 0 0 2px rgba(100,140,255,0.3), 0 0 1px rgba(0,0,0,0.5);
}

/* Status bar */
.phone-statusbar {
  position: absolute; top: 14px; left: 0; right: 0; z-index: 4;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 26px;
  font-size: 0.7rem; font-weight: 600; color: white;
}
.phone-statusbar-right {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.65rem;
}

/* Screen glass effect */
.phone-screen {
  position: absolute; inset: 3px;
  border-radius: 41px;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.03) 100%);
}

.phone-header {
  padding: 52px 16px 12px;
  background: var(--blue);
  display: flex; align-items: center; gap: 10px;
  color: white;
}
.phone-header-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.phone-header-name { font-weight: 600; font-size: 0.9rem; }
.phone-header-status { font-size: 0.7rem; color: #4ade80; }

.chat {
  flex: 1; overflow-y: auto; padding: 12px; background: #ECE5DD;
  position: relative;
}

.phone-input {
  padding: 10px 16px 6px;
  background: #f0f0f0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: #999;
}
.phone-input svg { color: #999; }

/* Home indicator bar */
.phone-home {
  height: 20px; background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
}
.phone-home::after {
  content: '';
  width: 120px; height: 4px;
  background: #ccc; border-radius: 4px;
}

/* ===== CHAT SCENES ===== */
.chat-scene { display: none; }
.chat-scene.active { display: block; }

.chat-time {
  text-align: center; font-size: 0.7rem; color: #8696a0;
  background: rgba(255,255,255,0.7); border-radius: 6px;
  padding: 2px 10px; margin: 8px auto; width: fit-content;
}

.msg { margin: 6px 0; max-width: 85%; }
.msg-out { margin-left: auto; }
.msg-in { margin-right: auto; }

.msg-text {
  padding: 8px 12px; border-radius: 10px;
  font-size: 0.82rem; line-height: 1.4;
}
.msg-out .msg-text { background: #DCF8C6; border-bottom-right-radius: 2px; }
.msg-in .msg-text { background: white; border-bottom-left-radius: 2px; }
.msg-late .msg-text { background: #ffe0e0; }

.msg-meta {
  font-size: 0.65rem; color: #8696a0; text-align: right;
  margin-top: 2px; padding-right: 4px;
}

.chat-badge {
  font-size: 0.72rem; padding: 4px 10px; border-radius: 6px;
  margin: 8px 0; width: fit-content; font-weight: 500;
}
.chat-badge-good { background: #dcf8c6; color: #1a5c1a; }
.chat-badge-bad { background: #ffe0e0; color: #8b0000; }

.chat-badges-row { display: flex; flex-direction: column; gap: 3px; }

.chat-waiting { text-align: center; padding: 20px 0; }
.chat-waiting-dots { font-size: 2rem; color: #8696a0; }
.chat-waiting-dots span {
  animation: blink 1.4s infinite both;
}
.chat-waiting-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-waiting-dots span:nth-child(3) { animation-delay: 0.4s; }
.chat-waiting-text { font-size: 0.75rem; color: #8696a0; margin-top: 4px; }

@keyframes blink {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }

.section-label {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange); margin-bottom: 0.75rem;
}
.section-label-light { color: rgba(232,115,58,0.8); }

/* PROBLEM */
.section-problem { background: var(--bg-light); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.problem-card {
  background: white; padding: 2rem; border-radius: var(--radius);
  box-shadow: var(--shadow); text-align: center;
}
.problem-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.problem-stat {
  font-family: 'JetBrains Mono', monospace; font-size: 2.5rem; font-weight: 700;
  color: var(--blue); margin-bottom: 0.5rem;
}

/* HOW */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 2.5rem; }
.step { position: relative; }
.step-num {
  font-family: 'JetBrains Mono', monospace; font-size: 3rem; font-weight: 700;
  color: rgba(26,58,92,0.1); margin-bottom: 0.5rem;
}
.step p { font-size: 0.95rem; }

/* RESULTS */
.section-results { background: var(--blue-dark); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.stat-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 2rem; text-align: center;
}
.stat-num {
  font-family: 'JetBrains Mono', monospace; font-size: 2.75rem; font-weight: 700;
  color: var(--orange); margin-bottom: 0.25rem;
}
.stat-label { color: white; font-weight: 600; font-size: 0.95rem; }
.stat-desc { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 0.25rem; }

/* FOR WHOM */
.section-whom { background: var(--bg-light); }
.whom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.whom-card {
  background: white; padding: 1.75rem; border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.whom-card:hover { transform: translateY(-4px); }
.whom-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.whom-card p { font-size: 0.9rem; }

/* COMPARISON */
.compare-table { margin-top: 2.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare-header, .compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.compare-header {
  background: var(--blue); color: white; font-weight: 600; font-size: 0.95rem;
}
.compare-header > div { padding: 1rem 1.25rem; }
.compare-col-bad { background: rgba(0,0,0,0.15); }
.compare-col-good { background: rgba(232,115,58,0.3); }
.compare-row { background: white; border-bottom: 1px solid #f0f0f0; }
.compare-row > div { padding: 0.85rem 1.25rem; font-size: 0.9rem; }
.compare-label { font-weight: 600; color: var(--text); }
.compare-bad { color: #c0392b; }
.compare-good { color: #27ae60; font-weight: 600; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.review-card {
  background: white; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-card p { font-size: 0.92rem; color: var(--text); font-style: italic; margin-bottom: 1.25rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.review-role { font-size: 0.8rem; color: var(--text-secondary); }

/* TIMELINE */
.timeline { margin-top: 2.5rem; position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--orange), var(--blue));
}
.timeline-item { position: relative; margin-bottom: 2.5rem; padding-left: 2rem; }
.timeline-marker {
  position: absolute; left: -2rem; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); border: 3px solid white; box-shadow: 0 0 0 2px var(--orange);
}
.timeline-period {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem; color: var(--orange); font-weight: 500; margin-bottom: 0.25rem;
}

/* FAQ */
.section-faq { background: var(--bg-light); }
.faq-list { margin-top: 2rem; }
.faq-item {
  background: white; border-radius: var(--radius-sm); margin-bottom: 0.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); overflow: hidden;
}
.faq-q {
  width: 100%; padding: 1.15rem 1.25rem; border: none; background: none;
  text-align: left; font-size: 0.95rem; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif;
}
.faq-q::after {
  content: '+'; font-size: 1.3rem; color: var(--orange); transition: transform 0.2s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 1.25rem 1.15rem; font-size: 0.9rem; }

/* CTA */
.section-cta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 5rem 0;
}
.cta-sub { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-hint { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 1.25rem; }

/* FOOTER */
.footer { background: var(--blue-dark); padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'DM Sans', sans-serif; font-weight: 700; color: white; font-size: 1.1rem; letter-spacing: -0.03em; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: white; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
/* Hero CTA hint */
.hero-cta-group { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.hero-cta-hint { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* CTA button icons */
.btn-wa:hover { background: #25D366; border-color: #25D366; }
.btn-tg { border-color: rgba(255,255,255,0.4); color: white; }
.btn-tg:hover { background: #0088cc; border-color: #0088cc; color: white; }
.btn-voice { border-color: rgba(255,255,255,0.4); color: white; }
.btn-voice:hover { background: var(--orange); border-color: var(--orange); color: white; }

/* Cases section */
.section-cases { background: var(--bg-light); }
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2.5rem; }
.case-card {
  background: white; border-radius: 16px; padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #eee;
}
.case-industry {
  font-size: 0.9rem; font-weight: 600; color: var(--blue);
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #eee;
}
.case-metrics { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.case-metric {
  display: grid; grid-template-columns: 1fr auto 1fr 1fr; align-items: center; gap: 0.5rem;
}
.case-before {
  font-family: 'JetBrains Mono', monospace; font-size: 1.1rem; font-weight: 500;
  color: #e74c3c; text-align: right;
}
.case-arrow { color: var(--text-secondary); font-size: 1.2rem; text-align: center; }
.case-after {
  font-family: 'JetBrains Mono', monospace; font-size: 1.1rem; font-weight: 500;
  color: #27ae60;
}
.case-label { font-size: 0.8rem; color: var(--text-secondary); }
.case-quote {
  font-style: italic; color: var(--text-secondary); font-size: 0.9rem;
  border-left: 3px solid var(--orange); padding-left: 1rem; margin: 0;
}

@media (max-width: 1024px) {
  .whom-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn-nav { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: white; padding: 1rem 1.5rem; gap: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .hero-content { flex-direction: column; text-align: center; gap: 2.5rem; }
  .hero-text h1 br { display: none; }

  .phone { width: 280px; height: 570px; border-radius: 38px; }
  .phone-notch { width: 100px; height: 28px; }
  .phone-screen { border-radius: 35px; }
  .phone-vol-up { top: 130px; height: 38px; }
  .phone-vol-down { top: 176px; height: 38px; }
  .phone::after { top: 148px; height: 54px; }

  .problem-grid, .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .whom-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .compare-header, .compare-row { grid-template-columns: 1fr 1fr 1fr; font-size: 0.8rem; }
  .compare-row > div { padding: 0.6rem 0.75rem; }

  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .cases-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .phone { width: 260px; height: 530px; border-width: 3px; border-radius: 34px; }
  .phone-screen { border-radius: 31px; }
  .phone-notch { width: 80px; height: 20px; }
  .msg-text { font-size: 0.78rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-card { padding: 1.25rem; }
  .stat-num { font-size: 2rem; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .case-metric { grid-template-columns: 1fr auto 1fr; }
  .case-label { grid-column: 1 / -1; text-align: center; }
  .hero-cta-group { align-items: center; }
}

/* Hide ElevenLabs floating widget bubble — triggered by buttons only */
elevenlabs-convai {
  position: fixed;
  bottom: -200px;
  right: -200px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
elevenlabs-convai.active {
  bottom: 20px;
  right: 20px;
  opacity: 1;
  pointer-events: auto;
  z-index: 9999;
}
