/* LeadMap Pro - Complete Modern Enterprise Light SaaS Design System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Color Palette */
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-glow: rgba(79, 70, 229, 0.15);
  --accent: #0284c7;
  --accent-glow: rgba(2, 132, 199, 0.15);
  
  /* Canvas & Surfaces (Crisp, High-Definition Enterprise Light Theme) */
  --bg-dark: #f8fafc;
  --bg-canvas: #f8fafc;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-card: #ffffff;
  --surface-hover: #f1f5f9;
  
  --border: #e2e8f0;
  --border-subtle: #f1f5f9;
  --border-focus: rgba(79, 70, 229, 0.5);

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;

  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
  --shadow-elevated: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 24px rgba(79, 70, 229, 0.15);

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-hover);
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
}

.brand-logo {
  height: 44px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--primary);
  background: #f1f5f9;
}

.nav-link.active {
  color: var(--primary);
  background: #eef2ff;
  font-weight: 700;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #4338ca);
  color: #fff;
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4338ca, #3730a3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
  color: #fff;
}

.btn-secondary {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #334155;
  box-shadow: var(--shadow-sm);
}

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

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: #eef2ff;
  color: var(--primary-hover);
}

.btn-success {
  background: #10b981;
  color: #fff;
}

.btn-success:hover {
  background: #059669;
  color: #fff;
}

.btn-danger {
  background: #ef4444;
  color: #fff;
}

.btn-danger:hover {
  background: #dc2626;
  color: #fff;
}

.btn-warning {
  background: #f59e0b;
  color: #fff;
}

.btn-warning:hover {
  background: #d97706;
  color: #fff;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ========================================================= */
/* LANDING PAGE - HERO SECTION                               */
/* ========================================================= */
.hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 15%, rgba(79, 70, 229, 0.05) 0%, transparent 60%);
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, rgba(2, 132, 199, 0.05) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  color: #0f172a;
  font-weight: 800;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #0f172a 30%, #4f46e5 70%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

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

/* ========================================================= */
/* TRUST SIGNALS                                             */
/* ========================================================= */
.trust-bar {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}

.trust-stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #0f172a;
}

.trust-stat-val.accent {
  color: var(--primary);
}

.trust-stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-top: 4px;
}

/* ========================================================= */
/* INTERACTIVE LIVE DEMO BOX                                 */
/* ========================================================= */
.demo-box {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.demo-input-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.form-input {
  flex: 1;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: border var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ========================================================= */
/* CARDS & SECTIONS                                          */
/* ========================================================= */
.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: #0f172a;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  position: relative;
}

.card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-elevated);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #eef2ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #eef2ff;
  color: var(--primary);
  border: 1px solid #c7d2fe;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ========================================================= */
/* FORMS & INPUTS                                            */
/* ========================================================= */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: #0f172a;
  font-size: 0.92rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-control::placeholder {
  color: #94a3b8;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ========================================================= */
/* TABLES                                                    */
/* ========================================================= */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #ffffff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.table th {
  background: #f8fafc;
  color: #475569;
  padding: 12px 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

.table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  vertical-align: middle;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr:hover td {
  background: #f8fafc;
}

/* ========================================================= */
/* BADGES & ALERTS                                           */
/* ========================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
}

.badge-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.badge-warning { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.badge-danger  { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.badge-info    { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.badge-purple  { background: #faf5ff; color: #7e22ce; border: 1px solid #e9d5ff; }

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.status-dot.pulse {
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.alert {
  padding: 12px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert-danger  { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-info    { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }

/* ========================================================= */
/* MODALS                                                    */
/* ========================================================= */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}

.modal-backdrop.show {
  display: flex;
}

.modal {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  padding: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.modal-close:hover {
  color: var(--text-main);
}

/* ========================================================= */
/* FLOATING BULK ACTION BAR                                  */
/* ========================================================= */
.floating-bulk-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #ffffff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(0,0,0,0.05);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 500;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.floating-bulk-bar.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ========================================================= */
/* PUBLIC FOOTER                                             */
/* ========================================================= */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: #ffffff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0 20px;
  max-width: 320px;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ========================================================= */
/* COOKIE CONSENT BANNER & MOBILE CTA                        */
/* ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-elevated);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-banner.hidden {
  display: none;
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
  z-index: 90;
}

/* =========================================================
   RESPONSIVE: TABLET (max-width: 992px)
   ========================================================= */
@media (max-width: 992px) {
  .leadmap-hero-section {
    padding: 60px 0 40px;
  }
  
  .leadmap-simulator-box {
    margin: 30px 10px 0;
  }

  .leadmap-sim-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .leadmap-sim-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .leadmap-sim-tab-btn {
    font-size: 0.78rem;
    padding: 5px 10px;
    white-space: nowrap;
  }

  /* Feature cards 2-col on tablet */
  .leadmap-feature-card {
    padding: 24px 20px;
  }
}

/* =========================================================
   RESPONSIVE: MOBILE (max-width: 768px)
   ========================================================= */
@media (max-width: 768px) {
  /* === NAVBAR === */
  .navbar {
    padding: 8px 0 !important;
  }
  #mobileMenuBtn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 8px 12px !important;
  }
  .nav-container {
    position: relative;
    flex-wrap: wrap;
    gap: 8px;
  }
  .brand {
    font-size: 1.1rem !important;
  }
  .brand-logo {
    height: 36px !important;
  }
  .nav-links,
  .nav-links.combot-nav-pill {
    display: none !important;
  }
  .nav-links.show-mobile,
  .nav-links.combot-nav-pill.show-mobile {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    box-shadow: var(--shadow-elevated);
    gap: 4px;
    z-index: 100;
    border-radius: 0 0 12px 12px;
  }
  .nav-links.show-mobile li {
    list-style: none;
  }
  .nav-links.show-mobile .nav-pill-item {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
  }
  .nav-actions {
    gap: 6px !important;
  }
  .nav-actions .btn {
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
  }

  /* === HERO SECTION === */
  .hero-title {
    font-size: 2.2rem !important;
    letter-spacing: -0.5px !important;
  }
  .hero-subtitle {
    font-size: 1rem !important;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
  }

  /* === LEADMAP HERO === */
  .leadmap-hero-section {
    padding: 50px 0 36px;
  }
  .leadmap-hero-section h1 {
    font-size: 1.85rem !important;
    letter-spacing: -0.5px !important;
    padding: 0 4px;
  }
  .leadmap-hero-section p {
    font-size: 0.95rem !important;
    padding: 0 8px;
  }
  .leadmap-pill-badge {
    padding: 5px 12px;
    gap: 6px;
    font-size: 0.78rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .leadmap-pill-badge span {
    font-size: 0.72rem !important;
    text-align: center;
  }

  /* CTA buttons stack vertically on mobile */
  .hero-cta-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0 8px;
  }
  .hero-cta-buttons .btn {
    width: 100% !important;
    justify-content: center;
    font-size: 0.95rem !important;
    padding: 12px 20px !important;
  }

  /* Trust signals stack on mobile */
  .hero-trust-signals {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center;
  }

  /* === INTERACTIVE SIMULATOR === */
  .leadmap-simulator-box {
    margin: 24px 0 0;
    border-radius: 14px;
  }
  .leadmap-sim-header {
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
    align-items: flex-start;
  }
  .leadmap-sim-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .leadmap-sim-tabs::-webkit-scrollbar {
    display: none;
  }
  .leadmap-sim-tab-btn {
    font-size: 0.72rem;
    padding: 5px 8px;
    white-space: nowrap;
  }

  /* Radar tab inputs stack on mobile */
  #simTabRadar {
    padding: 16px !important;
  }
  #simTabRadar > div:first-child {
    flex-direction: column !important;
  }
  #simTabRadar input {
    min-width: 100% !important;
  }
  #simTabRadar .btn {
    width: 100%;
  }

  /* Demo results table horizontal scroll */
  #simRadarResults .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #simRadarResults .table {
    min-width: 700px;
  }
  #simRadarResults > div:first-child {
    flex-direction: column !important;
    gap: 8px;
  }

  /* Spintax tab */
  #simTabSpintax {
    padding: 16px !important;
  }
  #spintaxOutputBox {
    grid-template-columns: 1fr !important;
  }

  /* Geofence tab */
  #simTabGeofence {
    padding: 20px 16px !important;
  }

  /* === TRUST METRICS RIBBON === */
  .trust-stats,
  .trust-metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .trust-metrics-grid > div > div:first-child {
    font-size: 1.5rem !important;
  }

  /* === FEATURE CARDS === */
  .cards-grid,
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .leadmap-feature-card {
    padding: 24px 20px;
  }

  /* === BATTLECARD TABLE === */
  #comparison .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .battlecard-table {
    min-width: 700px;
  }
  .battlecard-table th,
  .battlecard-table td {
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  /* === COST CALCULATOR === */
  .cost-calc-card {
    padding: 20px 16px;
  }
  .cost-comparison-grid {
    grid-template-columns: 1fr !important;
  }

  /* === PRICING SECTION === */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  /* Remove scale on featured pricing card */
  .pricing-grid .leadmap-feature-card[style*="transform: scale"] {
    transform: none !important;
  }

  /* === CTA BANNER === */
  section[style*="background: linear-gradient(135deg, #1e1b4b"] {
    padding: 50px 0 !important;
  }
  section[style*="background: linear-gradient(135deg, #1e1b4b"] h2 {
    font-size: 1.6rem !important;
  }

  /* === MOBILE STICKY CTA === */
  .mobile-sticky-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  /* === FOOTER === */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* === HIDE MOBILE LABEL in buttons === */
  .hide-mobile {
    display: none !important;
  }
}

/* =========================================================
   RESPONSIVE: SMALL MOBILE (max-width: 480px)
   ========================================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .leadmap-hero-section h1 {
    font-size: 1.55rem !important;
  }
  .leadmap-hero-section p {
    font-size: 0.88rem !important;
  }

  .leadmap-pill-badge {
    padding: 4px 10px;
    gap: 4px;
  }
  .leadmap-pill-badge span {
    font-size: 0.68rem !important;
  }

  /* Pricing cards */
  .leadmap-feature-card {
    padding: 22px 16px;
  }

  /* Section headings */
  .section h2,
  section h2 {
    font-size: 1.5rem !important;
  }

  /* Geofence circle smaller */
  .radar-geofence-circle {
    width: 100px;
    height: 100px;
  }

  .radar-geofence-circle i {
    font-size: 1.4rem !important;
  }

  /* CTA banner on small mobile */
  section[style*="background: linear-gradient(135deg, #1e1b4b"] h2 {
    font-size: 1.35rem !important;
  }
  section[style*="background: linear-gradient(135deg, #1e1b4b"] .btn {
    padding: 12px 24px !important;
    font-size: 0.92rem !important;
  }
}

.gradient-text-hero {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 16px 36px rgba(79, 70, 229, 0.08);
}

/* SaaS Image Showcase Container */
.saas-img-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  margin-top: 24px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.saas-img-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.12);
}
.saas-img-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}
.saas-img-dots {
  display: flex;
  gap: 8px;
}
.saas-img-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.saas-img-preview {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* API Code Showcase */
.api-box-container {
  background: #0f172a;
  border-radius: var(--radius-lg);
  border: 1px solid #1e293b;
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.4);
}
.api-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #1e293b;
  border-bottom: 1px solid #334155;
  flex-wrap: wrap;
  gap: 12px;
}
.api-tabs {
  display: flex;
  gap: 8px;
}
.api-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.api-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.api-tab-btn.active {
  background: #4f46e5;
  color: #ffffff;
  border-color: #6366f1;
}
.api-code-block {
  padding: 20px;
  color: #e2e8f0;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  font-size: 0.88rem;
  line-height: 1.6;
  overflow-x: auto;
  margin: 0;
  white-space: pre;
}

/* Comparison Matrix Table */
.feature-matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.feature-matrix-table th {
  padding: 16px 20px;
  background: #f8fafc;
  text-align: left;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 2px solid var(--border);
}
.feature-matrix-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-main);
}
.feature-matrix-table tr:hover td {
  background: #f8fafc;
}

/* Cost Calculator Slider Box */
.cost-calc-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-elevated);
}
.cost-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  accent-color: #4f46e5;
  cursor: pointer;
}

/* ==========================================================================
   COM.BOT DESIGN SYSTEM AESTHETICS (PREMIUM MINIMAL & CLEAN SAAS)
   ========================================================================== */

/* Com.bot Floating Pill Navigation */
.combot-nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  padding: 4px 6px;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
}
.nav-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-pill-item:hover,
.nav-pill-item.active {
  background: #eff6ff;
  color: #2563eb;
}
.combot-btn-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #059669 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.combot-btn-gradient:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
}

/* Com.bot Signature Gradient Hero */
.combot-hero-banner {
  position: relative;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 25%, #4f46e5 60%, #059669 100%);
  color: #ffffff;
  padding: 70px 0 60px;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(29, 78, 216, 0.25);
}
.combot-hero-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

/* Com.bot Meta Partner Glowing Pill */
.combot-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  color: #0f172a;
  padding: 8px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  margin-bottom: 28px;
}
.combot-meta-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1rem;
  color: #0081fb;
  border-right: 1px solid #e2e8f0;
  padding-right: 14px;
}
.combot-meta-txt {
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.2;
}

/* Com.bot Channel Cards Row inside Hero */
.channel-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 40px auto 0;
}
.channel-card-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.channel-card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.channel-icon-wrap {
  font-size: 1.4rem;
  margin-bottom: 6px;
  display: inline-block;
}
.channel-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
}

/* Com.bot Business Solutions Grid (4 cols x 2 rows) */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.solution-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 30px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.solution-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  border-color: #cbd5e1;
}
.icon-box-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 20px;
}
.icon-box-blue { background: #2563eb; }
.icon-box-pink { background: #d946ef; }
.icon-box-green { background: #10b981; }
.icon-box-orange { background: #f97316; }
.icon-box-rose { background: #f43f5e; }
.icon-box-purple { background: #8b5cf6; }
.icon-box-indigo { background: #4f46e5; }
.icon-box-teal { background: #0d9488; }

.solution-box-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.solution-box-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Com.bot Contact & Demo Section */
.combot-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.combot-contact-card {
  background: linear-gradient(135deg, #1d4ed8 0%, #059669 100%);
  border-radius: 24px;
  padding: 36px;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(29, 78, 216, 0.25);
}
.combot-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: #ffffff;
  padding: 12px 18px;
  font-size: 0.95rem;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.combot-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.combot-input:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
}

/* Responsive adjustments for com.bot components */
@media (max-width: 992px) {
  .channel-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .combot-contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .combot-hero-banner {
    padding: 50px 0 40px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .channel-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .combot-meta-pill {
    padding: 6px 14px;
    gap: 10px;
  }
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 10px 16px;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
  }
}

/* ==========================================================================

   COM.BOT MODERN FOOTER STYLES
   ========================================================================== */
.footer {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 65px 0 30px;
  color: #475569;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 45px;
}
.footer-brand-col p {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}
.footer-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}
.footer-link-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.footer-link-item:hover {
  color: #2563eb;
  transform: translateX(2px);
}
.footer-icon-pill {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #475569;
  flex-shrink: 0;
  transition: background 0.2s;
}
.footer-link-item:hover .footer-icon-pill {
  background: #e2e8f0;
}
.footer-meta-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 16px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.footer-bottom {
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-social-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   LEADMAP PRO ORIGINAL BESPOKE DESIGN SYSTEM (INDIGO + SUNSET ORANGE + CYAN)
   ========================================================================== */

/* Hero Canvas with Ambient Radial Glows & Dot Pattern */
.leadmap-hero-section {
  position: relative;
  background-color: #fafcfe;
  background-image: radial-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px), radial-gradient(rgba(249, 115, 22, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  padding: 80px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid #eef2f6;
}
.leadmap-hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.12) 0%, rgba(249, 115, 22, 0.08) 45%, rgba(6, 182, 212, 0) 70%);
  pointer-events: none;
  filter: blur(50px);
}

/* Custom Pulsing Badge */
.leadmap-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid #e0e7ff;
  box-shadow: 0 4px 18px rgba(79, 70, 229, 0.08);
  margin-bottom: 26px;
}
.leadmap-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 10px #f97316;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* Radiant LeadMap Pro Gradient Button */
.leadmap-btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 40%, #ea580c 100%) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3) !important;
  transition: all 0.25s ease !important;
}
.leadmap-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.4) !important;
}

/* Interactive Simulator Window (Terminal Style) */
.leadmap-simulator-box {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  max-width: 1060px;
  margin: 40px auto 0;
}
.leadmap-sim-header {
  background: #0f172a;
  color: #ffffff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.leadmap-sim-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 10px;
}
.leadmap-sim-tab-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.leadmap-sim-tab-btn.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.leadmap-sim-tab-btn:hover:not(.active) {
  color: #ffffff;
}

/* Feature Cards with Custom Glow & Hover Border */
.leadmap-feature-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.leadmap-feature-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(79, 70, 229, 0.09);
}
.leadmap-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5, #ea580c);
  opacity: 0;
  transition: opacity 0.2s;
}
.leadmap-feature-card:hover::after {
  opacity: 1;
}

/* Radar Geofence Circle Effect */
.radar-geofence-circle {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(79, 70, 229, 0.4);
  background: rgba(79, 70, 229, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.radar-sweep {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-top: 2px solid #f97316;
  animation: radarRotate 3s linear infinite;
}
@keyframes radarRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Battlecard Comparison Table */
.battlecard-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.battlecard-table th {
  padding: 18px 22px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
}
.battlecard-table th.highlight-col {
  background: linear-gradient(135deg, #312e81, #ea580c);
  color: #ffffff;
}
.battlecard-table td {
  padding: 16px 22px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.93rem;
  color: #334155;
}
.battlecard-table td.highlight-col {
  background: #faf5ff;
  font-weight: 700;
  color: #4338ca;
  border-left: 2px solid #e0e7ff;
  border-right: 2px solid #e0e7ff;
}

/* Spintax Live Output Card */
.spintax-badge {
  display: inline-block;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 2px 8px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.85rem;
  color: #ea580c;
}

