/**
 * Demo Landing Page & Customizer Studio Styles
 */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0f172a;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: #2563eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
}

.brand-text h1 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-text span {
  font-size: 11px;
  color: #64748b;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: #2563eb;
}

.btn-nav-cta {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-nav-cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px 24px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h2 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #0f172a;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  color: #475569;
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary-hero {
  background: #2563eb;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
}

.btn-secondary-hero {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary-hero:hover {
  background: #f1f5f9;
}

/* Prompt chips banner */
.prompt-banner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.prompt-banner-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 12px;
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.prompt-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s;
}

.prompt-chip:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-1px);
}

/* Products Section */
.products-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-wrap h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title-wrap p {
  color: #64748b;
  font-size: 15px;
  margin-top: 6px;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
  border-color: #bfdbfe;
}

.prod-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.prod-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.prod-desc {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 20px;
  flex: 1;
}

.prod-price {
  font-size: 13px;
  color: #475569;
  margin-bottom: 16px;
}

.prod-price strong {
  font-size: 20px;
  color: #0f172a;
}

.btn-card-quote {
  width: 100%;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-card-quote:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.feat-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
}

.feat-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feat-box h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feat-box p {
  font-size: 13px;
  color: #64748b;
}

/* Footer */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 48px 40px 48px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 40px;
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 6px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}

/* Customizer Studio Layout */
.customizer-container {
  display: grid;
  grid-template-columns: 460px 1fr;
  height: calc(100vh - 78px);
}

.customizer-sidebar {
  background: #ffffff;
  border-right: 1px solid #e2e8f0;
  padding: 28px;
  overflow-y: auto;
}

.customizer-preview-area {
  background: #f1f5f9;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
}

.panel-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.panel-sub {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
}

.form-section {
  margin-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 20px;
}

.form-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.color-picker-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.color-input {
  width: 42px;
  height: 38px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  cursor: pointer;
  padding: 2px;
}

.code-export-box {
  background: #0f172a;
  color: #38bdf8;
  padding: 16px;
  border-radius: 12px;
  font-family: monospace;
  font-size: 12px;
  white-space: pre-wrap;
  word-break: break-all;
  margin-top: 10px;
  position: relative;
}

.btn-copy-code {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #1e293b;
  color: #ffffff;
  border: 1px solid #334155;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
}

.btn-copy-code:hover {
  background: #334155;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .customizer-container { grid-template-columns: 1fr; height: auto; }
  .navbar { padding: 16px 20px; }
  .hero h2 { font-size: 36px; }
}

/* ==========================================================
   Comprehensive Landing Page Linked Sections Styling
   ========================================================== */

/* Brand Preset Switcher Bar */
.preset-switcher-strip {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 24px;
  position: sticky;
  top: 79px;
  z-index: 90;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.03);
}

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

.preset-switcher-label {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}

.preset-pills-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.preset-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-pill:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

.preset-pill.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* General Section Wrappers */
.landing-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  scroll-margin-top: 140px;
}

.landing-section-alt {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 80px 24px;
  margin: 80px 0;
  scroll-margin-top: 140px;
}

.landing-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f172a;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
}

/* In-Chat Payments & Certificate Grid */
.payment-flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.flow-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
}

.flow-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
  border-color: #93c5fd;
}

.flow-step-num {
  width: 32px;
  height: 32px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid #bfdbfe;
}

.flow-step-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.flow-step-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
}

.payment-banner-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px;
  padding: 36px;
  color: #ffffff;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.3);
}

.payment-banner-info h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.payment-banner-info p {
  font-size: 14px;
  color: #94a3b8;
  max-width: 580px;
}

.payment-methods-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.method-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #f8fafc;
}

.btn-try-checkout {
  background: #10b981;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-try-checkout:hover {
  background: #059669;
  transform: translateY(-2px);
}

/* Claims Assistant Center */
.claims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.claim-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 30px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
}

.claim-feature-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 16px 28px -6px rgba(37, 99, 235, 0.1);
}

.claim-card-icon {
  width: 52px;
  height: 52px;
  background: #eff6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.claim-feature-card h4 {
  font-size: 19px;
  font-weight: 750;
  color: #0f172a;
  margin-bottom: 10px;
}

.claim-feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 22px;
  flex: 1;
}

.btn-claim-action {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-claim-action:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* Coverage Knowledge Base / FAQ Section */
.faq-accordion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.faq-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.2s;
}

.faq-box:hover {
  border-color: #93c5fd;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}

.faq-question-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.faq-question-title {
  font-size: 16px;
  font-weight: 750;
  color: #0f172a;
}

.btn-faq-ask-bot {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-faq-ask-bot:hover {
  background: #2563eb;
  color: #ffffff;
}

.faq-answer-text {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
}

/* Developer & Integration Hub */
.dev-hub-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px;
  margin-top: 40px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.dev-nav-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.dev-tab-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.dev-tab-btn.active, .dev-tab-btn:hover {
  background: #eff6ff;
  color: #2563eb;
}

.code-terminal {
  background: #0f172a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.code-terminal-header {
  background: #1e293b;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #334155;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.terminal-title {
  font-family: monospace;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}

.terminal-copy-btn {
  background: #334155;
  color: #f8fafc;
  border: none;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.terminal-copy-btn:hover {
  background: #475569;
}

.code-terminal-body {
  padding: 20px;
  margin: 0;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: #38bdf8;
  overflow-x: auto;
}

.integration-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.integration-link-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.integration-link-card:hover {
  background: #ffffff;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.1);
}

.int-icon {
  font-size: 26px;
}

.int-title {
  font-size: 14px;
  font-weight: 750;
  color: #0f172a;
}

.int-sub {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

/* Multi-Column Rich Footer */
.footer-main-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1e293b;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 750;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col a:hover {
  color: #60a5fa;
}

@media (max-width: 900px) {
  .faq-accordion-grid { grid-template-columns: 1fr; }
  .footer-main-grid { grid-template-columns: 1fr; gap: 32px; }
  .payment-banner-box { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================
   Botly Platform SaaS Styles (Insurely Style)
   ========================================================== */

.botly-body {
  background-color: #faf9f7;
  color: #18221c;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  min-height: 100vh;
}

/* Film Grain Texture Overlay */
.botly-grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Hero area — dot pattern spans navbar + hero */
.botly-hero-area {
  background-color: rgba(255, 255, 255, 0.97);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Ccircle cx='1' cy='1' r='1' fill='%2318221c' fill-opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* Top Navbar */
.botly-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f1f5f9;
}

.botly-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.botly-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.botly-nav-item {
  color: #374151;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 550;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
  cursor: pointer;
}

.botly-nav-item:hover {
  color: #18221c;
}

.botly-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Pill Buttons matching the reference image */
.pill-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #18221c;
  color: #ffffff;
  border: 1px solid #18221c;
  border-radius: 9999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-btn-dark:hover {
  background: #27362d;
  border-color: #27362d;
  transform: translateY(-1px);
}

.pill-btn-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #9be553;
  color: #18221c;
  border: 1px solid #9be553;
  border-radius: 9999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-btn-lime:hover {
  background: #8cd445;
  border-color: #8cd445;
  transform: translateY(-1px);
}

.pill-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #ffffff;
  color: #18221c;
  border: 1.5px solid #18221c;
  border-radius: 9999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-btn-outline:hover {
  background: #18221c;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(24, 34, 28, 0.12);
}

.pill-btn-dark,
.pill-btn-lime,
.pill-btn-outline {
  box-sizing: border-box;
  height: 42px;
  line-height: 1;
}

.nav-auth-profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #18221c;
  border-radius: 9999px;
  padding: 4px 14px 4px 6px;
  height: 42px;
  box-sizing: border-box;
  transition: all 0.2s;
}

.nav-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-user-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #18221c;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-sign-out-btn {
  background: none;
  border: none;
  font-size: 11.5px;
  color: #64748b;
  font-weight: 700;
  cursor: pointer;
  padding: 0 2px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.nav-sign-out-btn:hover {
  color: #b91c1c;
}

/* ==================================================
   BOTLY AUTHENTICATION MODAL DESIGN SYSTEM
================================================== */
.botly-auth-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.72);
  z-index: 9999999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: authFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes authShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.auth-shake {
  animation: authShake 0.35s ease-in-out !important;
}

.studio-layout.gated {
  filter: blur(8px) !important;
  pointer-events: none !important;
  user-select: none !important;
  transition: filter 0.3s ease;
}

.botly-auth-card {
  background: #ffffff;
  width: 92%;
  max-width: 440px;
  border-radius: 24px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(24, 34, 28, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.botly-auth-header {
  padding: 24px 28px 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #f1f5f9;
}

.botly-auth-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.botly-auth-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #18221c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(24, 34, 28, 0.2);
}

.botly-auth-title {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: #18221c;
  letter-spacing: -0.3px;
}

.botly-auth-badge {
  display: inline-block;
  background: rgba(155, 229, 83, 0.2);
  border: 1px solid rgba(155, 229, 83, 0.4);
  color: #15803d;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  letter-spacing: 0.3px;
  margin-top: 3px;
}

.botly-auth-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.botly-auth-close:hover {
  background: #18221c;
  color: #ffffff;
  border-color: #18221c;
}

.botly-auth-body {
  padding: 22px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.botly-auth-google-btn {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #18221c;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.botly-auth-google-btn:hover {
  border-color: #18221c;
  background: #f8fafc;
  transform: translateY(-1px);
}

.botly-auth-input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 13.5px;
  color: #18221c;
  box-sizing: border-box;
  transition: all 0.2s;
  background: #f8fafc;
}

.botly-auth-input:focus {
  border-color: #18221c;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(155, 229, 83, 0.3);
}

.botly-auth-submit-btn {
  width: 100%;
  height: 44px;
  background: #18221c;
  color: #ffffff;
  border: 1px solid #18221c;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.botly-auth-submit-btn:hover {
  background: #27362d;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(24, 34, 28, 0.25);
}

/* Hero Section */
.botly-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px 60px 24px;
  text-align: center;
}

.hero-tag-pill {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: 8px;
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.hero-editorial-headline {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: #18221c;
  max-width: 900px;
  margin: 0 auto;
}

.hero-editorial-headline em {
  font-style: italic;
  font-weight: 400;
}

.hero-editorial-sub {
  font-size: 19px;
  color: #4b5563;
  max-width: 660px;
  margin: 28px auto 36px auto;
  line-height: 1.55;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

/* Interactive Sandbox Showcase Card */
.sandbox-hero-preview {
  max-width: 1080px;
  margin: 40px auto 90px auto;
  padding: 0 24px;
}

.sandbox-frame {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.sandbox-frame-left {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #f1f5f9;
}

.sandbox-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}

.sandbox-frame-left h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.25;
  color: #18221c;
  margin-bottom: 14px;
}

.sandbox-frame-left p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.sandbox-frame-right {
  background: #f8fafc;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Value Props Grid */
.botly-section {
  max-width: 1180px;
  margin: 100px auto;
  padding: 0 24px;
  scroll-margin-top: 100px;
}

.botly-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.botly-section-tag {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #15803d;
  margin-bottom: 12px;
  display: block;
}

.botly-section-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #18221c;
  line-height: 1.2;
}

.botly-section-desc {
  font-size: 16px;
  color: #64748b;
  margin-top: 14px;
  line-height: 1.6;
}

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

.botly-feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.botly-feature-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.06);
}

.card-icon-pill {
  width: 48px;
  height: 48px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.botly-feature-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: #18221c;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.botly-feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

/* Call to Action Banner */
.botly-cta-banner {
  background: #18221c;
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  color: #ffffff;
  margin: 100px auto;
  max-width: 1180px;
  position: relative;
  overflow: hidden;
}

.botly-cta-banner h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #ffffff;
}

.botly-cta-banner p {
  font-size: 17px;
  color: #94a3b8;
  max-width: 580px;
  margin: 0 auto 32px auto;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .botly-navbar { padding: 16px 20px; }
  .botly-nav-menu { display: none; }
  .hero-editorial-headline { font-size: 40px; }
  .sandbox-frame { grid-template-columns: 1fr; }
  .botly-cards-grid { grid-template-columns: 1fr; }
  .botly-cta-banner { padding: 48px 24px; }
  .botly-cta-banner h3 { font-size: 32px; }
}

/* ==========================================================
   PRICING SECTION STYLES
   ========================================================== */

.botly-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  align-items: stretch;
}

.botly-pricing-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.04);
}

.botly-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.10);
  border-color: #cbd5e1;
}

/* Popular / Growth card — dark style */
.botly-pricing-popular {
  background: #18221c;
  border-color: #18221c;
  box-shadow: 0 16px 48px -12px rgba(24, 34, 28, 0.45);
}

.botly-pricing-popular:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px -12px rgba(24, 34, 28, 0.55);
  border-color: #9be553;
}

.pricing-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #9be553;
  color: #18221c;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(155, 229, 83, 0.4);
}

.pricing-tier-badge {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748b;
  margin-bottom: 18px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 14px;
}

.pricing-dollar {
  font-size: 28px;
  font-weight: 700;
  color: #18221c;
  line-height: 1;
  margin-bottom: 4px;
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-amount {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 68px;
  font-weight: 400;
  color: #18221c;
  line-height: 1;
  letter-spacing: -2px;
}

.pricing-per {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  margin-left: 4px;
  margin-bottom: 6px;
  align-self: flex-end;
}

.pricing-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 28px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 24px;
}

.botly-pricing-popular .pricing-desc {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  line-height: 1.4;
}

.pricing-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 50%;
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.botly-pricing-popular .pricing-features li {
  color: rgba(255, 255, 255, 0.92) !important;
}

.botly-pricing-popular .pricing-check {
  background: rgba(155, 229, 83, 0.15);
  border-color: rgba(155, 229, 83, 0.4);
}

.pricing-cta-btn {
  width: 100%;
  background: #18221c;
  color: #ffffff;
  border: 1px solid #18221c;
  border-radius: 9999px;
  padding: 14px 24px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.2px;
}

.pricing-cta-btn:hover {
  background: #26352c;
  border-color: #26352c;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(24, 34, 28, 0.25);
}

.pricing-cta-btn-lime {
  background: #9be553;
  color: #18221c;
  border-color: #9be553;
}

.pricing-cta-btn-lime:hover {
  background: #8cd445;
  border-color: #8cd445;
  box-shadow: 0 8px 24px rgba(155, 229, 83, 0.45);
  transform: translateY(-2px);
}

/* Pricing FAQ grid */
.botly-pricing-faq {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 900px) {
  .botly-pricing-grid { grid-template-columns: 1fr; }
  .botly-pricing-faq { grid-template-columns: 1fr; padding: 28px 24px; }
  .pricing-amount { font-size: 52px; }
}

/* ==========================================================
   MOBILE RESPONSIVE — FULL OVERHAUL
   ========================================================== */

/* ── Hamburger Button ── */
.botly-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  flex-shrink: 0;
}
.botly-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #18221c;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.botly-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.botly-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.botly-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Drawer ── */
.botly-mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.12);
}
.botly-mobile-nav.open { display: flex; }
.botly-mobile-nav-link {
  color: #374151;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  display: block;
  transition: color 0.15s;
}
.botly-mobile-nav-link:hover { color: #18221c; }
.botly-mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

/* ── Tablet: 768px – 900px ── */
@media (max-width: 900px) {
  /* Navbar */
  .botly-navbar { padding: 14px 20px; }
  .botly-nav-menu { display: none; }
  .botly-nav-actions { display: none; }
  .botly-hamburger { display: flex; }
  .botly-header-wrap { position: sticky; top: 0; z-index: 1000; }

  /* Hero */
  .botly-hero { padding: 60px 20px 40px; }
  .hero-editorial-headline { font-size: 42px; letter-spacing: -0.8px; }
  .hero-editorial-sub { font-size: 16px; }
  .hero-cta-group { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Sandbox preview */
  .sandbox-frame { grid-template-columns: 1fr; gap: 32px; }
  .sandbox-hero-preview { padding: 40px 20px; }
  .sandbox-frame-right { display: flex; justify-content: center; }

  /* Features / Use-cases cards */
  .botly-cards-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .botly-section { padding: 60px 20px; }
  .botly-section-title { font-size: 32px; }

  /* Pricing */
  .botly-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .botly-pricing-faq { grid-template-columns: 1fr; padding: 28px 20px; }
  .pricing-amount { font-size: 52px; }

  /* CTA Banner */
  .botly-cta-banner { padding: 48px 24px; margin: 60px 20px; border-radius: 20px; }
  .botly-cta-banner h3 { font-size: 32px; }
  .botly-cta-banner p { font-size: 15px; }

  /* Footer */
  footer { padding: 48px 24px 24px !important; }
  footer > div:first-of-type { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
}

/* ── Mobile: ≤640px ── */
@media (max-width: 640px) {
  /* Hero */
  .botly-hero { padding: 48px 16px 32px; }
  .hero-tag-pill { font-size: 12px; }
  .hero-editorial-headline { font-size: 32px; line-height: 1.18; letter-spacing: -0.5px; }
  .hero-editorial-sub { font-size: 15px; padding: 0 4px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta-group .pill-btn-dark,
  .hero-cta-group .pill-btn-lime { width: 100%; justify-content: center; text-align: center; }

  /* Sandbox card */
  .sandbox-hero-preview { padding: 24px 16px 32px; }
  .sandbox-frame-left h3 { font-size: 24px; }
  .sandbox-frame-left p { font-size: 14px; }
  .prompt-chip { font-size: 12px; padding: 6px 12px; }
  .sandbox-frame-right > div { max-width: 100% !important; }

  /* Feature/use-case cards */
  .botly-cards-grid { grid-template-columns: 1fr; }
  .botly-section { padding: 48px 16px; }
  .botly-section-header { margin-bottom: 28px; }
  .botly-section-tag { font-size: 11px; }
  .botly-section-title { font-size: 26px; line-height: 1.22; }
  .botly-section-desc { font-size: 14px; }

  /* Pricing cards */
  .botly-pricing-grid { max-width: 100%; padding: 0 4px; }
  .botly-pricing-card { padding: 28px 20px; }
  .pricing-amount { font-size: 56px; }
  .botly-pricing-faq { padding: 20px 16px; }

  /* Developer hub */
  .dev-tab-btn { font-size: 12px; padding: 6px 12px; }
  .terminal-block { font-size: 12px; padding: 16px; border-radius: 12px; }
  .payment-banner-box { flex-direction: column; gap: 16px; align-items: flex-start; }

  /* CTA Banner */
  .botly-cta-banner { padding: 40px 16px; margin: 40px 12px; border-radius: 16px; }
  .botly-cta-banner h3 { font-size: 26px; }
  .botly-cta-banner .hero-cta-group { flex-direction: column; align-items: stretch; }
  .botly-cta-banner .pill-btn-lime,
  .botly-cta-banner .pill-btn-dark { width: 100%; justify-content: center; }

  /* Footer */
  footer { padding: 40px 16px 20px !important; }
  footer > div:first-of-type { grid-template-columns: 1fr !important; gap: 28px !important; }
  footer > div:last-of-type { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 11.5px; }

  /* Utility */
  .pill-btn-dark, .pill-btn-lime { padding: 11px 20px; font-size: 13.5px; }
}

/* ── Small phones: ≤380px ── */
@media (max-width: 380px) {
  .hero-editorial-headline { font-size: 28px; }
  .botly-section-title { font-size: 23px; }
  .botly-cta-banner h3 { font-size: 22px; }
}

/* ==========================================================
   STUDIO & GLOBAL MOBILE LAYOUT OVERHAUL
   ========================================================== */

/* Prevent horizontal page drift */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Studio Mobile Switcher Bar (Hidden on desktop) */
.studio-mobile-switcher {
  display: none;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 6px 12px;
  gap: 8px;
  position: sticky;
  top: 56px;
  z-index: 95;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.studio-mobile-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 750;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  cursor: pointer;
  transition: all 0.18s ease;
  min-height: 40px;
}

.studio-mobile-tab.active {
  background: #18221c;
  color: #ffffff;
  border-color: #18221c;
  box-shadow: 0 2px 8px rgba(24, 34, 28, 0.15);
}

.mobile-live-sync-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  animation: ins-pulse 2s infinite;
}

/* Mobile Quick Switch Floating Pill in Preview Mode */
.mobile-back-to-edit-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #18221c;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 750;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 99;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}

/* ── Tablet & Mobile (≤900px) Studio Rules ── */
@media (max-width: 900px) {
  body.studio-body {
    overflow-y: auto !important;
  }

  .studio-mobile-switcher {
    display: flex;
  }

  .studio-layout {
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: calc(100vh - 110px);
    overflow: visible !important;
  }

  /* When Customize tab is active */
  .studio-mode-customize .wizard-sidebar {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    box-shadow: none !important;
    border-right: none !important;
  }
  .studio-mode-customize .preview-canvas-area {
    display: none !important;
  }

  /* When Preview tab is active */
  .studio-mode-preview .wizard-sidebar {
    display: none !important;
  }
  .studio-mode-preview .preview-canvas-area {
    display: flex !important;
    width: 100% !important;
    height: calc(100vh - 110px) !important;
    overflow-y: auto !important;
  }
  .studio-mode-preview .mobile-back-to-edit-btn {
    display: flex;
  }

  /* Wizard Step Bar */
  .wizard-step-bar {
    padding: 10px 14px;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .wizard-step-bar::-webkit-scrollbar {
    display: none;
  }

  .step-pill {
    padding: 6px 11px;
    font-size: 11px;
  }

  /* Panels */
  .wizard-panel {
    padding: 18px 16px 36px 16px;
    gap: 16px;
  }

  /* Form controls iOS auto-zoom prevention */
  .wizard-panel input,
  .wizard-panel textarea,
  .wizard-panel select,
  .botly-auth-input {
    font-size: 16px !important;
  }

  /* Purpose Grid */
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Preview Canvas Area */
  .preview-canvas-header {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .test-chips {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .t-chip {
    flex-shrink: 0;
    padding: 6px 10px;
    font-size: 11px;
  }

  .preview-stage {
    padding: 12px;
    align-items: flex-start;
  }
  #preview-chatbot-mount {
    width: 100% !important;
    max-width: 100% !important;
    height: calc(100vh - 200px) !important;
    min-height: 480px;
    border-radius: 14px;
  }

/* Base Studio Header & Navigation Styles */
.customizer-brand-title .brand-long {
  display: inline-block;
}
.customizer-new-bot-btn {
  background: #18221c;
  color: #9be553;
  border: 1.5px solid #18221c;
  border-radius: 9999px;
  padding: 7px 15px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.customizer-new-bot-btn:hover {
  background: #27362d;
  border-color: #27362d;
  color: #bbf779;
  box-shadow: 0 3px 10px rgba(24, 34, 28, 0.2);
  transform: translateY(-1px);
}

.customizer-mobile-actions {
  display: none;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* Mobile Header Action Buttons */
.mobile-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 34px;
  padding: 0 10px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  color: #18221c;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition: all 0.15s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-btn:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}
.mobile-nav-btn:active {
  transform: scale(0.97);
}

.mobile-nav-badge {
  height: 20px;
  min-width: 20px;
  padding: 0 6px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-sizing: border-box;
}
.mobile-bots-badge {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #18221c;
}
.mobile-leads-badge {
  background: #18221c;
  color: #9be553;
}

.mobile-bots-btn.active {
  background: #18221c;
  border-color: #18221c;
  color: #9be553;
}
.mobile-bots-btn.active .mobile-bots-badge {
  background: #26382c;
  border-color: #3f5e49;
  color: #9be553;
}

/* Studio Hamburger Button */
.studio-hamburger-btn {
  display: none;
  width: 36px;
  height: 34px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 9px;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  transition: all 0.18s ease;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
.studio-hamburger-btn:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}
.studio-hamburger-btn:active {
  transform: scale(0.97);
}
.studio-hamburger-btn .ham-line {
  width: 17px;
  height: 2px;
  background: #18221c;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.studio-hamburger-btn.active .ham-line-1 {
  transform: translateY(6px) rotate(45deg);
}
.studio-hamburger-btn.active .ham-line-2 {
  opacity: 0;
}
.studio-hamburger-btn.active .ham-line-3 {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Hamburger Drawer Overlay */
.studio-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.studio-mobile-drawer.open {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 999999 !important;
}
.studio-mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 310px;
  max-width: 86vw;
  height: 100%;
  background: #ffffff;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.studio-mobile-drawer.open .studio-mobile-drawer-content {
  transform: translateX(0) !important;
}

.drawer-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}
.drawer-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.drawer-close-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.drawer-new-bot-cta {
  width: 100%;
  box-sizing: border-box;
  background: #18221c;
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(24, 34, 28, 0.25);
  transition: all 0.15s ease;
  text-decoration: none;
}
.drawer-new-bot-cta:hover {
  background: #24342a;
  transform: translateY(-1px);
}

.drawer-menu-list {
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: #0f172a;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
  font-family: inherit;
  text-align: left;
}
.drawer-menu-item:hover {
  background: #f8fafc;
}
.drawer-menu-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #18221c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.drawer-menu-text {
  flex: 1;
}
.drawer-menu-title {
  font-size: 13px;
  font-weight: 750;
  color: #18221c;
  line-height: 1.2;
}
.drawer-menu-desc {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

.studio-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #18221c;
  color: #9be553;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 9999999;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
}
.studio-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

  /* Navbar in Customizer Studio */
  .customizer-header nav {
    padding: 8px 16px !important;
    height: 56px !important;
    min-height: 56px !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .customizer-nav-brand {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
  }
  #nav-brand-logo {
    width: 28px !important;
    height: 28px !important;
  }
  .customizer-brand-title {
    font-size: 15px !important;
    white-space: nowrap !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #18221c !important;
    display: block !important;
  }
  .customizer-brand-title .brand-long {
    display: inline-block !important;
    font-size: 15px !important;
  }
  .customizer-subtext {
    display: none !important;
  }

  /* Hide Desktop Nav Actions on Mobile */
  .customizer-nav-actions {
    display: none !important;
  }

  /* Show Mobile Header Actions (Bots + Leads + Hamburger) */
  .customizer-mobile-actions {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  .mobile-nav-btn {
    display: inline-flex !important;
    height: 34px !important;
  }
  .studio-hamburger-btn {
    display: inline-flex !important;
    height: 34px !important;
    width: 36px !important;
  }
}

/* ── Small Phones (≤480px) ── */
@media (max-width: 480px) {
  .wizard-panel {
    padding: 14px 12px 28px 12px;
  }
  .panel-title {
    font-size: 16.5px;
  }
  .panel-subtitle {
    font-size: 12px;
  }
  .customizer-header nav {
    padding: 6px 12px !important;
    height: 52px !important;
    min-height: 52px !important;
    gap: 6px !important;
  }
  .customizer-brand-title {
    font-size: 14px !important;
  }
  .customizer-brand-title .brand-long {
    font-size: 14px !important;
    display: inline-block !important;
  }
  #nav-brand-logo {
    width: 26px !important;
    height: 26px !important;
  }
  .customizer-mobile-actions {
    gap: 5px !important;
  }
  .mobile-nav-btn {
    height: 32px !important;
    padding: 0 8px !important;
    font-size: 11px !important;
  }
  .mobile-nav-badge {
    height: 18px !important;
    min-width: 18px !important;
    font-size: 10px !important;
    padding: 0 4px !important;
  }
  .studio-hamburger-btn {
    width: 34px !important;
    height: 32px !important;
  }
  .step-pill span:not(.snum) {
    display: none;
  }
  .step-pill {
    padding: 6px 8px;
    border-radius: 50%;
  }
  .step-pill .snum {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
}

/* ==================================================
   BOTLY PRO STUDIO: COLLAPSIBLE CHATBOTS WORKSPACE SIDEBAR
   ================================================== */
.chatbots-sidebar {
  width: 270px;
  min-width: 270px;
  max-width: 270px;
  height: 100%;
  background: #ffffff;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  box-shadow: 1px 0 10px rgba(0, 0, 0, 0.02);
  transition: width 0.26s cubic-bezier(0.4, 0, 0.2, 1),
              min-width 0.26s cubic-bezier(0.4, 0, 0.2, 1),
              max-width 0.26s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease,
              visibility 0.26s ease;
  z-index: 15;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.chatbots-sidebar.collapsed {
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  padding: 0 !important;
  border-right: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Header inside sidebar */
.chatbots-sidebar-header {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
  flex-shrink: 0;
}

.chatbots-sidebar-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chatbots-sidebar-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #18221c;
  letter-spacing: -0.2px;
  margin: 0;
}

.chatbots-badge-count {
  background: #f1f5f9;
  color: #475569;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
}

.btn-collapse-sidebar {
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
}

.btn-collapse-sidebar:hover {
  background: #f8fafc;
  color: #18221c;
  border-color: #cbd5e1;
}

/* Action Area in Sidebar */
.chatbots-sidebar-actions {
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
  flex-shrink: 0;
}

.btn-sidebar-create-bot {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #18221c;
  color: #9be553;
  border: 1.5px solid #18221c;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(24, 34, 28, 0.15);
}

.btn-sidebar-create-bot:hover {
  background: #283a2f;
  border-color: #283a2f;
  color: #bbf779;
  transform: translateY(-1px);
}

/* Chatbots List Items */
.chatbots-sidebar-list {
  flex: 1;
  overflow-y: auto;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-width: thin;
}

.chatbot-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 11px 12px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 11px;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  text-align: left;
}

.chatbot-card:hover {
  border-color: #cbd5e1;
  background: #fcfdfd;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.chatbot-card.active {
  border-color: #18221c;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(24, 34, 28, 0.08);
  position: relative;
}

.chatbot-card.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3.5px;
  background: #9be553;
  border-radius: 0 4px 4px 0;
}

.chatbot-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.chatbot-card-company {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chatbot-card-active-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  flex-shrink: 0;
}

.chatbot-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: #64748b;
  gap: 6px;
}

.chatbot-card-botname {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.chatbot-card-colors {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.chatbot-color-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

.chatbot-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3px;
  padding-top: 5px;
  border-top: 1px dashed #f1f5f9;
  font-size: 10.5px;
  color: #94a3b8;
}

.chatbot-card-delete-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 11px;
  line-height: 1;
  opacity: 0.6;
  transition: all 0.15s;
}

.chatbot-card:hover .chatbot-card-delete-btn {
  opacity: 1;
}

.chatbot-card-delete-btn:hover {
  color: #ef4444;
  background: #fee2e2;
}

/* Sidebar Footer */
.chatbots-sidebar-footer {
  padding: 12px 14px;
  border-top: 1px solid #f1f5f9;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #64748b;
  flex-shrink: 0;
}

/* Header Toggle Button for Chatbots Sidebar */
.bots-sidebar-toggle-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 9999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #18221c;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.bots-sidebar-toggle-btn:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
}

.bots-sidebar-toggle-btn.active {
  background: #18221c;
  color: #9be553;
  border-color: #18221c;
}

/* Backdrop for Mobile Sidebar */
.chatbots-sidebar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  z-index: 99998;
}

.chatbots-sidebar-backdrop.show {
  display: block;
}

/* Mobile Responsiveness for Chatbots Sidebar */
@media (max-width: 900px) {
  .chatbots-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    height: 100dvh !important;
    width: 290px !important;
    min-width: 290px !important;
    max-width: 85vw !important;
    z-index: 99999 !important;
    box-shadow: 4px 0 25px rgba(0,0,0,0.2) !important;
    transform: translateX(-100%) !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin: 0 !important;
  }

  .chatbots-sidebar.mobile-open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

