/* =============================================================
   Bot It AI — main.css
   All compiled styles live here (no SCSS compilation)
   ============================================================= */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --bi-bg:        #0A0E1A;
  --bi-surface:   #131929;
  --bi-surface-2: #1A2235;
  --bi-cyan:      #00F5FF;
  --bi-violet:    #7B2FFF;
  --bi-pink:      #FF3CAC;
  --bi-text:      #E8EDF5;
  --bi-muted:     #6B7A9A;
  --bi-border:    rgba(0,245,255,0.15);

  --bi-grad-primary: linear-gradient(135deg, #00F5FF 0%, #7B2FFF 100%);
  --bi-grad-warm:    linear-gradient(135deg, #7B2FFF 0%, #FF3CAC 100%);
  --bi-grad-full:    linear-gradient(135deg, #00F5FF 0%, #7B2FFF 50%, #FF3CAC 100%);
  --bi-grad-bg:      linear-gradient(135deg, #0A0E1A 0%, #131929 100%);

  --bi-glow-cyan:   0 0 20px rgba(0,245,255,0.4);
  --bi-glow-violet: 0 0 20px rgba(123,47,255,0.4);
  --bi-glow-pink:   0 0 20px rgba(255,60,172,0.4);

  /* Bootstrap overrides */
  --bs-primary:      #00F5FF;
  --bs-secondary:    #7B2FFF;
  --bs-body-bg:      #0A0E1A;
  --bs-body-color:   #E8EDF5;
  --bs-border-color: rgba(0,245,255,0.15);
  --bs-link-color:   #00F5FF;
  --bs-link-hover-color: #7B2FFF;
}

/* ── Base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bi-bg);
  color: var(--bi-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--bi-text);
}

a { color: var(--bi-cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--bi-violet); }

img { max-width: 100%; height: auto; }

/* ── Announcement Bar ────────────────────────────────────────── */
.botit-announcement-bar {
  background: rgba(0,245,255,0.08);
  border-bottom: 1px solid var(--bi-border);
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
  z-index: 1031;
}
.botit-announcement-bar a { color: var(--bi-cyan); font-weight: 600; }
.botit-announcement-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,245,255,0.15), transparent);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer { 0% { left: -100%; } 100% { left: 150%; } }

/* ── Header ──────────────────────────────────────────────────── */
.botit-header {
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bi-border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1030;
}
.botit-scrolled .botit-header {
  background: rgba(10,14,26,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* ── Brand (logo + name) ─────────────────────────────────────── */
.botit-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none !important;
  padding: 0;
}
.botit-logo-icon {
  display: block;
  height: 32px;
  width: auto;
  flex-shrink: 0;
}
.botit-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00eafa;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
/* Keep for backwards-compat (offcanvas wordmark fallback) */
.botit-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bi-text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.botit-wordmark-dot {
  color: var(--bi-cyan);
  filter: drop-shadow(0 0 6px var(--bi-cyan));
  margin: 0 1px;
  font-size: 0.75em;
  vertical-align: middle;
}

/* ── Desktop nav links ───────────────────────────────────────── */
#nav-main .navbar-nav .nav-link,
#nav-main .navbar-nav .nav-link:link,
#nav-main .navbar-nav .nav-link:visited {
  color: var(--bi-text) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.65rem;
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}
#nav-main .navbar-nav .nav-link:hover,
#nav-main .navbar-nav .nav-link:focus,
#nav-main .navbar-nav .nav-link.active,
#nav-main .navbar-nav .current-menu-item > .nav-link {
  color: var(--bi-cyan) !important;
}
/* Subtle underline indicator on hover */
#nav-main .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.65rem;
  right: 0.65rem;
  height: 1px;
  background: var(--bi-cyan);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: center;
}
#nav-main .navbar-nav .nav-link:hover::after,
#nav-main .navbar-nav .current-menu-item > .nav-link::after {
  transform: scaleX(1);
}

/* ── Hamburger toggler ───────────────────────────────────────── */
.nav-toggler {
  border-color: rgba(0,245,255,0.3) !important;
  color: var(--bi-cyan) !important;
  padding: 0.35rem 0.6rem;
  line-height: 1;
  transition: all 0.2s ease;
}
.nav-toggler:hover {
  border-color: var(--bi-cyan) !important;
  background: rgba(0,245,255,0.08) !important;
}

/* ── Offcanvas (mobile drawer) ───────────────────────────────── */
.botit-mobile-nav {
  background: var(--bi-surface);
  border-left: 1px solid var(--bi-border) !important;
  max-width: 300px;
}
.botit-mobile-nav-header {
  border-bottom: 1px solid var(--bi-border);
  padding: 1rem 1.25rem;
}
.botit-mobile-nav-header .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.6;
}
.botit-mobile-nav-header .btn-close:hover { opacity: 1; }
.botit-mobile-nav-body {
  padding: 1rem 0.5rem;
}
/* Mobile nav links inside offcanvas */
.botit-mobile-nav .navbar-nav .nav-link,
.botit-mobile-nav .navbar-nav .nav-link:link,
.botit-mobile-nav .navbar-nav .nav-link:visited {
  color: var(--bi-text) !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.botit-mobile-nav .navbar-nav .nav-link:hover,
.botit-mobile-nav .navbar-nav .nav-link.active,
.botit-mobile-nav .navbar-nav .current-menu-item > .nav-link {
  color: var(--bi-cyan) !important;
  background: rgba(0,245,255,0.07);
}
/* Remove the underline pseudo-element inside offcanvas */
.botit-mobile-nav .navbar-nav .nav-link::after { display: none; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-botit-primary {
  background: var(--bi-pink);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: var(--bi-glow-pink);
  transition: all 0.3s ease;
  animation: pulse-pink 2s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-botit-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,60,172,0.6);
  color: #fff;
}
.btn-botit-ghost {
  background: transparent;
  color: var(--bi-cyan);
  border: 1px solid var(--bi-cyan);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.btn-botit-ghost:hover {
  background: rgba(0,245,255,0.1);
  box-shadow: var(--bi-glow-cyan);
  color: var(--bi-cyan);
}
@keyframes pulse-pink {
  0%, 100% { box-shadow: 0 0 15px rgba(255,60,172,0.4); }
  50%       { box-shadow: 0 0 30px rgba(255,60,172,0.7); }
}

/* ── Sections / Layout ───────────────────────────────────────── */
.py-section { padding: 6rem 0; }
.py-section-lg { padding: 8rem 0; }
.botit-section-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.botit-section-sub {
  color: var(--bi-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.botit-gradient-text {
  background: var(--bi-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Stat Section ─────────────────────────────────────────────── */
.botit-stats-section {
  background: var(--bi-surface);
  border-top: 1px solid var(--bi-border);
  border-bottom: 1px solid var(--bi-border);
}
.botit-stat-card { padding: 2rem; }
.botit-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.botit-stat-label { color: var(--bi-muted); font-size: 0.95rem; line-height: 1.5; }
.botit-stat-source { display: block; font-size: 0.72rem; color: rgba(107,122,154,0.6); margin-top: 0.25rem; font-style: italic; }

/* ── Flow Diagram ─────────────────────────────────────────────── */
.botit-flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 2rem 0;
  max-width: 100%;
}
.botit-flow-node {
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  min-width: 180px;
  max-width: 220px;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.botit-flow-node:hover { border-color: var(--bi-cyan); box-shadow: var(--bi-glow-cyan); transform: translateY(-4px); }
.botit-flow-node--center { border-color: var(--bi-violet); box-shadow: var(--bi-glow-violet); }
.botit-flow-icon { font-size: 2rem; margin-bottom: 0.75rem; color: var(--bi-muted); }
.botit-flow-icon--primary { color: var(--bi-cyan); }
.botit-flow-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }
.botit-flow-desc { font-size: 0.78rem; color: var(--bi-muted); line-height: 1.5; }
.botit-flow-node-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--bi-grad-primary);
  color: #0A0E1A;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.botit-flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 140px;
  padding: 0 1.25rem;
  flex-shrink: 0;
}
.botit-flow-line {
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--bi-cyan), var(--bi-violet));
  position: relative;
  overflow: visible;
}
.botit-flow-dot {
  width: 10px; height: 10px;
  background: var(--bi-cyan);
  border-radius: 50%;
  position: absolute;
  top: -4px; left: 0;
  animation: travel 2s linear infinite;
  box-shadow: 0 0 8px var(--bi-cyan);
}
@keyframes travel { 0% { left: 0; } 100% { left: calc(100% - 10px); } }
.botit-flow-connector-label { font-size: 0.65rem; color: var(--bi-muted); text-align: center; white-space: nowrap; }

/* ── Step Cards ───────────────────────────────────────────────── */
.botit-step-card {
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.botit-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--bi-grad-primary);
}
.botit-step-card:hover { border-color: rgba(123,47,255,0.4); transform: translateY(-4px); box-shadow: var(--bi-glow-violet); }
.botit-step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--bi-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.botit-step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.botit-step-card p { color: var(--bi-muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* ── Feature Cards ────────────────────────────────────────────── */
.botit-feature-card {
  background: var(--bi-bg);
  border: 1px solid var(--bi-border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.botit-feature-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: var(--bi-grad-full);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.botit-feature-card:hover::after { opacity: 1; }
.botit-feature-card:hover { transform: translateY(-4px); }
.botit-feature-card--cyan:hover  { box-shadow: var(--bi-glow-cyan); }
.botit-feature-card--violet:hover { box-shadow: var(--bi-glow-violet); }
.botit-feature-card--pink:hover  { box-shadow: var(--bi-glow-pink); }
.botit-feature-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.botit-feature-card--cyan   .botit-feature-icon { color: var(--bi-cyan); }
.botit-feature-card--violet .botit-feature-icon { color: var(--bi-violet); }
.botit-feature-card--pink   .botit-feature-icon { color: var(--bi-pink); }
.botit-feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; }
.botit-feature-desc { color: var(--bi-muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* ── Chart / Metric ───────────────────────────────────────────── */
.botit-chart-container {
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  border-radius: 16px;
  padding: 1.5rem;
}
.botit-metric-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.botit-metric-badge {
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  color: var(--bi-muted);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.botit-metric-badge.active,
.botit-metric-badge:hover {
  border-color: var(--bi-cyan);
  color: var(--bi-cyan);
  background: rgba(0,245,255,0.08);
}

/* ── Pricing ──────────────────────────────────────────────────── */
.botit-pricing-card {
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}
.botit-pricing-card:hover { transform: translateY(-6px); }
.botit-pricing-card--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bi-surface), var(--bi-surface)) padding-box,
    var(--bi-grad-primary) border-box;
  box-shadow: var(--bi-glow-violet);
}
.botit-pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--bi-grad-primary);
  color: #0A0E1A;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.botit-pricing-plan { font-size: 0.85rem; font-weight: 600; color: var(--bi-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.botit-pricing-price { font-family: 'Space Grotesk', sans-serif; font-size: 3.5rem; font-weight: 700; line-height: 1; margin-bottom: 0.25rem; }
.botit-pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.botit-pricing-period { font-size: 0.85rem; color: var(--bi-muted); margin-bottom: 1.5rem; }
.botit-pricing-divider { border: none; border-top: 1px solid var(--bi-border); margin: 1.5rem 0; }
.botit-pricing-features { list-style: none; padding: 0; margin: 0 0 2rem; text-align: left; }
.botit-pricing-features li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--bi-muted); display: flex; align-items: center; gap: 0.6rem; }
.botit-pricing-features li::before { content: '✓'; color: var(--bi-cyan); font-weight: 700; flex-shrink: 0; }
.botit-pricing-requests { font-size: 0.8rem; color: var(--bi-cyan); font-weight: 600; margin-bottom: 0.5rem; }

/* ── CTA Section ──────────────────────────────────────────────── */
.botit-cta-section {
  background: radial-gradient(ellipse at center, rgba(123,47,255,0.15) 0%, var(--bi-bg) 70%);
}
.botit-cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.botit-cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.botit-cta-inner p { color: var(--bi-muted); margin-bottom: 2rem; }
.botit-waitlist-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.botit-waitlist-input {
  flex: 1;
  min-width: 220px;
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  color: var(--bi-text);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}
.botit-waitlist-input:focus {
  outline: none;
  border-color: var(--bi-cyan);
  box-shadow: var(--bi-glow-cyan);
}
.botit-cta-urgency { font-size: 0.85rem; color: var(--bi-muted); }

/* ── Page Hero (inner pages) ──────────────────────────────────── */
.botit-page-hero {
  background: var(--bi-surface);
  border-bottom: 1px solid var(--bi-border);
}

/* ── FAQ Accordion ────────────────────────────────────────────── */
.botit-accordion .accordion-item {
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.botit-accordion .accordion-button {
  background: var(--bi-surface);
  color: var(--bi-text);
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: none;
}
.botit-accordion .accordion-button:not(.collapsed) {
  background: var(--bi-surface-2);
  color: var(--bi-cyan);
}
.botit-accordion .accordion-button::after {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(150deg);
}
.botit-accordion .accordion-body {
  background: var(--bi-surface-2);
  color: var(--bi-muted);
  line-height: 1.7;
}

/* ── Comparison Table ─────────────────────────────────────────── */
.botit-comparison-table {
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  border-radius: 16px;
  overflow: hidden;
}
.botit-comparison-table th {
  background: var(--bi-surface-2);
  color: var(--bi-text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--bi-border);
}
.botit-comparison-table th.bi-featured { color: var(--bi-cyan); }
.botit-comparison-table td {
  padding: 0.85rem 1.25rem;
  color: var(--bi-muted);
  border-bottom: 1px solid rgba(0,245,255,0.07);
  vertical-align: middle;
}
.botit-comparison-table td.bi-featured { color: var(--bi-text); }
.botit-comparison-table .bi-check { color: var(--bi-cyan); font-size: 1.1rem; }
.botit-comparison-table .bi-no { color: var(--bi-muted); opacity: 0.5; }
.botit-comparison-table tr:last-child td { border-bottom: none; }

/* ── Footer ───────────────────────────────────────────────────── */
.botit-footer {
  background: var(--bi-surface);
  border-top: 1px solid var(--bi-border);
}
.botit-footer-agents {
  background: rgba(0,245,255,0.04);
  border-bottom: 1px solid var(--bi-border);
  padding: 1rem 0;
  text-align: center;
}
.botit-footer-agents .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.botit-footer-agents-label { font-size: 0.8rem; color: var(--bi-muted); white-space: nowrap; }
.botit-footer-agents-badges { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.botit-agent-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bi-cyan);
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}
.botit-agents-sep { color: var(--bi-border); }
.botit-footer-cta {
  background: radial-gradient(ellipse at center, rgba(123,47,255,0.1) 0%, transparent 70%);
  padding: 4rem 0;
  border-bottom: 1px solid var(--bi-border);
}
.botit-footer-cta-headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.botit-footer-columns { padding: 4rem 0 3rem; }
.botit-footer-tagline { color: var(--bi-muted); font-size: 0.9rem; line-height: 1.65; margin-top: 0.75rem; max-width: 280px; }
.botit-footer-col-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bi-text); margin-bottom: 1rem; }
.botit-footer-links { list-style: none; padding: 0; margin: 0; }
.botit-footer-links li { margin-bottom: 0.5rem; }
.botit-footer-links a { color: var(--bi-muted); font-size: 0.9rem; transition: color 0.2s; }
.botit-footer-links a:hover { color: var(--bi-cyan); }
.botit-footer-social { display: flex; gap: 0.75rem; }
.botit-social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--bi-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--bi-muted);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.botit-social-link:hover { border-color: var(--bi-cyan); color: var(--bi-cyan); background: rgba(0,245,255,0.08); }
.botit-footer-bottom {
  border-top: 1px solid var(--bi-border);
  padding: 1.25rem 0;
}
.botit-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.botit-copyright { font-size: 0.82rem; color: var(--bi-muted); }
.botit-footer-legal { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.botit-footer-legal a { font-size: 0.82rem; color: var(--bi-muted); }
.botit-footer-legal a:hover { color: var(--bi-cyan); }

/* ── To-top button ────────────────────────────────────────────── */
.top-button {
  bottom: 2rem;
  right: 2rem;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  color: var(--bi-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
  padding: 0;
}
.botit-scrolled .top-button { opacity: 1; pointer-events: auto; }
.top-button:hover { background: rgba(0,245,255,0.1); box-shadow: var(--bi-glow-cyan); color: var(--bi-cyan); }

/* ── Use Case Cards ───────────────────────────────────────────── */
.botit-usecase-card {
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  text-decoration: none;
  display: block;
  color: var(--bi-text);
}
.botit-usecase-card:hover { border-color: var(--bi-violet); transform: translateY(-4px); box-shadow: var(--bi-glow-violet); color: var(--bi-text); }
.botit-usecase-icon { font-size: 3rem; margin-bottom: 1rem; }
.botit-usecase-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.botit-usecase-desc { font-size: 0.88rem; color: var(--bi-muted); line-height: 1.6; }

/* ── Timeline ─────────────────────────────────────────────────── */
.botit-timeline { position: relative; padding-left: 2.5rem; }
.botit-timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--bi-cyan), var(--bi-violet), var(--bi-pink));
}
.botit-timeline-item { position: relative; margin-bottom: 3rem; }
.botit-timeline-marker {
  position: absolute;
  left: -2.5rem;
  top: 0.2rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bi-grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #0A0E1A;
  box-shadow: var(--bi-glow-cyan);
  flex-shrink: 0;
}
.botit-timeline-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35rem; }
.botit-timeline-desc { color: var(--bi-muted); font-size: 0.9rem; line-height: 1.65; }

/* ── Blog / News ─────────────────────────────────────────────── */
.botit-post-card {
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
.botit-post-card:hover { transform: translateY(-4px); border-color: rgba(123,47,255,0.4); box-shadow: var(--bi-glow-violet); }
.botit-post-card-body { padding: 1.5rem; }
.botit-post-meta { font-size: 0.78rem; color: var(--bi-muted); margin-bottom: 0.5rem; }
.botit-post-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.botit-post-title a { color: var(--bi-text); }
.botit-post-title a:hover { color: var(--bi-cyan); }
.botit-post-excerpt { font-size: 0.88rem; color: var(--bi-muted); line-height: 1.6; }

/* ── Alternate feature section ────────────────────────────────── */
.botit-alt-feature { padding: 5rem 0; }
.botit-alt-feature:nth-child(even) { background: var(--bi-surface); }
.botit-alt-feature-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(0,245,255,0.08);
  border: 1px solid var(--bi-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.botit-alt-feature-mockup {
  background: var(--bi-surface-2);
  border: 1px solid var(--bi-border);
  border-radius: 16px;
  padding: 2rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Misc ─────────────────────────────────────────────────────── */
.botit-badge-pill {
  display: inline-block;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.3);
  color: var(--bi-cyan);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

/* ── Legal / Content Pages ────────────────────────────────────── */
.entry-content h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--bi-border);
}
.entry-content h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.entry-content p,
.entry-content li {
  color: var(--bi-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
.entry-content ul {
  padding-left: 1.25rem;
}
.entry-content li {
  margin-bottom: 0.4rem;
}
.entry-content a {
  color: var(--bi-cyan);
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.88rem;
}
.entry-content th,
.entry-content td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--bi-border);
  text-align: left;
}
.entry-content th {
  background: var(--bi-surface);
  color: var(--bi-text);
  font-weight: 600;
}
.entry-content td {
  color: var(--bi-muted);
}
.entry-content code {
  background: var(--bi-surface);
  color: var(--bi-cyan);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85em;
}

/* ── Breadcrumbs ─────────────────────────────────────────────── */
nav[aria-label="breadcrumb"] {
  background: var(--bi-surface) !important;
  border: 1px solid var(--bi-border);
  border-radius: 8px !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.82rem;
}
.breadcrumb {
  margin-bottom: 0;
}
.breadcrumb-item a {
  color: var(--bi-cyan) !important;
  text-decoration: none;
}
.breadcrumb-item a:hover {
  color: var(--bi-text) !important;
}
.breadcrumb-item.active {
  color: var(--bi-muted) !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--bi-muted) !important;
}

/* ── Single Post ─────────────────────────────────────────────── */
.single #content {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.single .entry-title {
  color: var(--bi-text);
  font-size: 2rem;
  line-height: 1.3;
}
.single .entry-meta small {
  color: var(--bi-muted) !important;
}
.single .entry-meta a {
  color: var(--bi-cyan);
}
.single .badge {
  background: rgba(0,245,255,0.1) !important;
  color: var(--bi-cyan) !important;
  border: 1px solid rgba(0,245,255,0.3);
  font-weight: 500;
}
.single .entry-footer .badge {
  background: var(--bi-surface) !important;
  color: var(--bi-muted) !important;
  border: 1px solid var(--bi-border);
}
.single .page-item a,
.single .page-item span {
  color: var(--bi-cyan);
}

/* ── Sidebar / Widgets ────────────────────────────────────────── */
.widget a {
  color: var(--bi-muted);
}
.widget a:hover {
  color: var(--bi-cyan);
}
.list-group-item {
  background: var(--bi-surface) !important;
  border-color: var(--bi-border) !important;
  color: var(--bi-muted) !important;
}
.list-group-item a {
  color: var(--bi-muted) !important;
}
.list-group-item:hover,
.list-group-item-action:hover,
.list-group-item-action:focus {
  background: var(--bi-surface-2) !important;
  color: var(--bi-cyan) !important;
}
.list-group-item:hover a,
.list-group-item-action:hover a,
.list-group-item-action:focus a {
  color: var(--bi-cyan) !important;
}
.widget-title, .widget h2 {
  color: var(--bi-text);
  font-size: 1rem;
}

/* ── Blog Page Header ────────────────────────────────────────── */
#main > .bg-body-tertiary {
  background: var(--bi-surface) !important;
  border: 1px solid var(--bi-border);
  color: var(--bi-text);
}
#main > .bg-body-tertiary .entry-title {
  color: var(--bi-text);
}
#main > .bg-body-tertiary .lead {
  color: var(--bi-muted);
}

/* ── Blog Loop Cards (News page) ─────────────────────────────── */
.card.horizontal {
  background: var(--bi-surface) !important;
  border-color: var(--bi-border) !important;
}
.card.horizontal .card-body .text-body {
  color: var(--bi-text) !important;
}
.card.horizontal .card-body .text-body:hover {
  color: var(--bi-cyan) !important;
}
.card.horizontal .card-body .card-text,
.card.horizontal .card-body .card-text a {
  color: var(--bi-muted) !important;
}
.card.horizontal .card-body .card-text a:hover {
  color: var(--bi-cyan) !important;
}
.card.horizontal .card-body .text-body-secondary {
  color: var(--bi-muted) !important;
}
.card.horizontal .card-body .read-more {
  color: var(--bi-cyan) !important;
}
.card.horizontal .card-body .badge {
  background: rgba(0,245,255,0.1) !important;
  color: var(--bi-cyan) !important;
  border: 1px solid rgba(0,245,255,0.3);
}

/* ── Cookie Consent Bar ──────────────────────────────────────── */
.botit-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bi-surface);
  border-top: 1px solid var(--bi-border);
  padding: 1rem 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.botit-cookie-bar.is-visible {
  transform: translateY(0);
}
.botit-cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.botit-cookie-bar-text {
  font-size: 0.88rem;
  color: var(--bi-muted);
  flex: 1;
  min-width: 280px;
}
.botit-cookie-bar-text a {
  color: var(--bi-cyan);
}
.botit-cookie-bar-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.botit-cookie-bar-actions .btn {
  font-size: 0.82rem;
  padding: 0.4rem 1rem;
}

/* ── Contact Page / CF7 Form ─────────────────────────────────── */
.botit-contact-form-wrap .wpcf7-form label {
  display: block;
  color: var(--bi-muted);
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.botit-contact-form-wrap .wpcf7-form input[type="text"],
.botit-contact-form-wrap .wpcf7-form input[type="email"],
.botit-contact-form-wrap .wpcf7-form textarea {
  width: 100%;
  background: var(--bi-bg);
  border: 1px solid var(--bi-border);
  border-radius: 0.5rem;
  padding: 0.65rem 1rem;
  color: var(--bi-text);
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
  margin-bottom: 1rem;
}
.botit-contact-form-wrap .wpcf7-form input:focus,
.botit-contact-form-wrap .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--bi-cyan);
  box-shadow: 0 0 0 3px rgba(0,245,255,0.1);
}
.botit-contact-form-wrap .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}
.botit-contact-form-wrap .wpcf7-form input[type="submit"] {
  background: var(--bi-grad-primary);
  color: #0A0E1A;
  font-weight: 700;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.botit-contact-form-wrap .wpcf7-form input[type="submit"]:hover {
  opacity: 0.85;
}
.botit-contact-form-wrap .wpcf7-form .wpcf7-response-output {
  border-color: var(--bi-border) !important;
  color: var(--bi-muted);
  font-size: 0.88rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
.botit-contact-form-wrap .wpcf7-form .wpcf7-not-valid-tip {
  color: var(--bi-pink);
  font-size: 0.8rem;
}

/* ── Changelog Page ──────────────────────────────────────────── */
.botit-changelog-entry {
  border-left: 3px solid var(--bi-cyan);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}
.botit-changelog-version {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bi-text);
  margin-bottom: 0.15rem;
}
.botit-changelog-date {
  font-size: 0.82rem;
  color: var(--bi-muted);
  margin-bottom: 0.75rem;
}
.botit-changelog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.botit-changelog-list li {
  color: var(--bi-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.botit-changelog-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bi-cyan);
}
.botit-changelog-list li.changelog-fix::before { background: var(--bi-pink); }
.botit-changelog-list li.changelog-new::before { background: var(--bi-cyan); }
.botit-changelog-list li.changelog-improve::before { background: var(--bi-violet); }

/* ── Kit Early Access Modal ──────────────────────────────────── */
.botit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.botit-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.botit-modal {
  position: relative;
  background: var(--bi-surface);
  border: 1px solid var(--bi-border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}
.botit-modal-overlay.is-open .botit-modal {
  transform: translateY(0) scale(1);
}
.botit-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--bi-muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
}
.botit-modal-close:hover { color: var(--bi-text); }
.botit-modal-header { text-align: center; margin-bottom: 1.5rem; }
.botit-modal-headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bi-text);
  margin-bottom: 0.5rem;
}
.botit-modal-sub {
  color: var(--bi-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
/* Style Kit's embedded form to match the dark theme */
.botit-modal-body .formkit-form {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.botit-modal-body .formkit-form [data-style="clean"] {
  padding: 0 !important;
}
.botit-modal-body .formkit-input {
  background: var(--bi-bg) !important;
  border: 1px solid var(--bi-border) !important;
  border-radius: 0.5rem !important;
  color: var(--bi-text) !important;
  padding: 0.65rem 1rem !important;
  font-size: 0.9rem !important;
}
.botit-modal-body .formkit-input:focus {
  border-color: var(--bi-cyan) !important;
  box-shadow: 0 0 0 3px rgba(0,245,255,0.1) !important;
  outline: none !important;
}
.botit-modal-body .formkit-submit {
  background: var(--bi-grad-primary) !important;
  color: #0A0E1A !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 0.5rem !important;
  padding: 0.75rem 2rem !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  width: 100% !important;
}
.botit-modal-body .formkit-submit:hover {
  opacity: 0.85;
}
.botit-modal-body .formkit-guarantee,
.botit-modal-body .formkit-powered-by-convertkit-container {
  color: var(--bi-muted) !important;
  font-size: 0.78rem !important;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .py-section { padding: 4rem 0; }
  .botit-flow-diagram { gap: 0; justify-content: flex-start; }
  .botit-stat-number { font-size: 2.5rem; }
  .botit-footer-bottom-inner { justify-content: center; text-align: center; }
}
@media (max-width: 575.98px) {
  .botit-wordmark { font-size: 1.25rem; }
}
