/* ═══════════════════════════════════════════════
   BASICS LANDING — TOKENS
   ═══════════════════════════════════════════════ */
/* Fix scroll horizontal causado por .row con márgenes negativos de eurekacss */
html,
body {
  overflow-x: hidden !important;
}

:root {
  --bx-red: #dd3900;
  --bx-red-d: #b52e00;
  --bx-red-bg: rgba(221, 57, 0, .08);
  --bx-dark: #111827;
  --bx-text: #111827;
  --bx-text2: #374151;
  --bx-muted: #6b7280;
  --bx-border: #e5e7eb;
  --bx-bg-alt: #f9fafb;
  --bx-success: #059669;
  --bx-r: 12px;
  --bx-r-lg: 20px;
  --bx-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  --bx-shadow-md: 0 6px 28px rgba(0, 0, 0, .1);
}

.bx-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.bx-section {
  padding: 88px 0;
}

.bx-bg-white {
  background: #fff;
}

.bx-bg-alt {
  background: var(--bx-bg-alt);
}

.bx-bg-dark {
  background: var(--bx-dark);
}

/* Typography */
.bx-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--bx-red);
  margin-bottom: 10px;
}

.bx-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--bx-text);
  margin-bottom: 14px;
}

.bx-title-lg {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}

.bx-title-lg span {
  color: #ff6b3d;
}

.bx-sub {
  font-size: 1.05rem;
  color: var(--bx-muted);
  line-height: 1.75;
  max-width: 620px;
}

.bx-section-head {
  margin-bottom: 52px;
}

/* Buttons */
/* eurekacss define a { color: #007bff } — usamos !important para no ser pisados */
.bx-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--bx-r);
  font-weight: 700 !important;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  text-decoration: none !important;
  white-space: nowrap;
  box-sizing: border-box;
}

.bx-btn-primary {
  background: var(--bx-red) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(221, 57, 0, .3);
}

.bx-btn-primary:hover,
.bx-btn-primary:focus,
.bx-btn-primary:active {
  background: var(--bx-red-d) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(221, 57, 0, .4);
}

.bx-btn-outline {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, .45) !important;
}

.bx-btn-outline:hover,
.bx-btn-outline:focus,
.bx-btn-outline:active {
  background: rgba(255, 255, 255, .1) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, .7) !important;
  transform: translateY(-2px);
}

.bx-btn-ghost {
  background: transparent !important;
  color: var(--bx-red) !important;
  border-color: var(--bx-red) !important;
}

.bx-btn-ghost:hover,
.bx-btn-ghost:focus,
.bx-btn-ghost:active {
  background: var(--bx-red-bg) !important;
  color: var(--bx-red) !important;
  transform: translateY(-2px);
}

.bx-btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ── HERO ── */
.bx-hero {
  background: var(--bx-dark);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.bx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 75% 10%, rgba(221, 57, 0, .16) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 5% 90%, rgba(221, 57, 0, .07) 0%, transparent 60%);
  pointer-events: none;
}

.bx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(221, 57, 0, .14);
  border: 1px solid rgba(221, 57, 0, .3);
  color: #ff6b3d;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.bx-hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

/* Contenedor de botones hero — sin flex para evitar conflictos con .row de eurekacss */
.basics-hero-cta {
  display: block !important;
  line-height: 1 !important;
}

.basics-hero-cta>a {
  margin-right: 20px !important;
  margin-bottom: 10px !important;
  vertical-align: middle !important;
}

.basics-hero-cta>a:last-child {
  margin-right: 0 !important;
}

/* Stats bar */
.bx-stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--bx-border);
  padding: 28px 0;
}

.bx-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bx-stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--bx-border);
}

.bx-stat-item:last-child {
  border-right: none;
}

.bx-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bx-red);
  line-height: 1;
}

.bx-stat-label {
  font-size: .75rem;
  color: var(--bx-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 5px;
}

/* Hero preview card */
.bx-preview-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--bx-r-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.bx-preview-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 18px;
}

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

.bx-preview-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
}

.bx-preview-list li:last-child {
  border-bottom: none;
}

.bx-preview-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bx-red);
  flex-shrink: 0;
}

.bx-preview-cat {
  margin-left: auto;
  font-size: .72rem;
  color: rgba(255, 255, 255, .32);
  white-space: nowrap;
}

.bx-preview-more {
  margin-top: 14px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255, 165, 0, .8);
  font-weight: 600;
}

/* ── HOW IT WORKS ── */
.bx-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--bx-border);
}

.bx-step:last-child {
  border-bottom: none;
}

.bx-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bx-red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.bx-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bx-text);
  margin-bottom: 6px;
}

.bx-step p {
  font-size: .93rem;
  color: var(--bx-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── VALUE PROPS ── */
.bx-vp-card {
  background: #fff;
  border-radius: var(--bx-r-lg);
  padding: 32px;
  height: 100%;
  border: 1px solid var(--bx-border);
  box-shadow: var(--bx-shadow);
  transition: transform .25s, box-shadow .25s;
}

.bx-vp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bx-shadow-md);
}

.bx-vp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bx-red-bg);
  color: var(--bx-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bx-vp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bx-text);
  margin-bottom: 10px;
}

.bx-vp-card p {
  font-size: .9rem;
  color: var(--bx-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── FOR WHOM ── */
.bx-who-card {
  background: #fff;
  border-radius: var(--bx-r-lg);
  padding: 28px;
  height: 100%;
  border: 1px solid var(--bx-border);
  border-top: 3px solid var(--bx-red);
  transition: transform .25s, box-shadow .25s;
}

.bx-who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bx-shadow-md);
}

.bx-who-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--bx-r);
  background: var(--bx-red-bg);
  color: var(--bx-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bx-who-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bx-text);
  margin-bottom: 8px;
}

.bx-who-card p {
  font-size: .88rem;
  color: var(--bx-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── CATALOG: sidebar + detail (eureka-style) ── */
.bx-cat-layout {
  display: flex;
  gap: 0;
  min-height: 580px;
  border: 1px solid var(--bx-border);
  border-radius: var(--bx-r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--bx-shadow);
}

.bx-cat-sidebar {
  width: 260px;
  flex-shrink: 0;
  border-right: 1px solid var(--bx-border);
  background: var(--bx-bg-alt);
  overflow-y: auto;
}

.bx-cat-btn {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  border: none;
  border-bottom: 1px solid var(--bx-border);
  border-left: 3px solid transparent;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background .18s, border-left-color .18s;
}

.bx-cat-btn:hover {
  background: rgba(221, 57, 0, .04);
}

.bx-cat-btn.active {
  background: var(--bx-red-bg);
  border-left-color: var(--bx-red);
}

.bx-cat-btn-num {
  font-size: .7rem;
  font-family: monospace;
  color: var(--bx-muted);
  width: 22px;
  flex-shrink: 0;
}

.bx-cat-btn.active .bx-cat-btn-num {
  color: var(--bx-red);
}

.bx-cat-btn-label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--bx-muted);
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}

.bx-cat-btn.active .bx-cat-btn-label {
  color: var(--bx-text);
}

.bx-cat-btn-count {
  font-size: .7rem;
  font-weight: 700;
  color: var(--bx-muted);
  background: var(--bx-border);
  padding: 1px 7px;
  border-radius: 50px;
  margin-left: auto;
  flex-shrink: 0;
}

.bx-cat-btn.active .bx-cat-btn-count {
  background: var(--bx-red-bg);
  color: var(--bx-red);
}

.bx-cat-main {
  flex: 1;
  min-width: 0;
  padding: 32px 36px;
}

.bx-cat-panel {
  display: none;
}

.bx-cat-panel.active {
  display: block;
  animation: bxFadeUp .25s ease-out;
}

@keyframes bxFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bx-cat-panel-head {
  margin-bottom: 20px;
}

.bx-cat-panel-counter {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--bx-red);
}

.bx-cat-panel-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bx-text);
  margin: 4px 0 0;
}

/* ── SUBCATEGORY CHIPS ── */
.bx-subcat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.bx-subcat-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1.5px solid var(--bx-border);
  background: #fff;
  font-size: .72rem;
  font-weight: 600;
  color: var(--bx-muted);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  white-space: nowrap;
}

.bx-subcat-chip:hover {
  border-color: var(--bx-red);
  color: var(--bx-red);
}

.bx-subcat-chip.active {
  background: var(--bx-red);
  border-color: var(--bx-red);
  color: #fff;
}

.bx-sim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.bx-sim-card {
  background: #fff;
  border-radius: var(--bx-r);
  padding: 12px 14px;
  border: 1px solid var(--bx-border);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bx-sim-card:hover {
  border-color: var(--bx-red);
  box-shadow: 0 4px 18px rgba(221, 57, 0, .1);
  transform: translateY(-2px);
}

.bx-sim-card.active {
  border-color: var(--bx-red);
  box-shadow: 0 4px 18px rgba(221, 57, 0, .15);
  background: var(--bx-red-bg);
}

.bx-sim-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bx-red-bg);
  border-radius: 12px;
  color: var(--bx-red);
  flex-shrink: 0;
}

/* Force all SVGs — regardless of their own width/height attributes — to 28px */
.bx-sim-card-icon svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  display: block;
  color: var(--bx-red);
  stroke: var(--bx-red);
  fill: none;
  overflow: visible;
}

.bx-sim-name {
  font-weight: 600;
  font-size: .82rem;
  color: var(--bx-text);
  margin: 0;
  line-height: 1.4;
}

.bx-sim-badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  background: var(--bx-red-bg);
  color: var(--bx-red);
  padding: 2px 8px;
  border-radius: 50px;
  margin-bottom: 5px;
}

/* Detail panel */
.bx-sim-detail {
  display: none;
  background: var(--bx-bg-alt);
  border: 1px solid var(--bx-border);
  border-radius: var(--bx-r);
  padding: 24px 28px;
  margin-top: 12px;
}

.bx-sim-detail.active {
  display: block;
  animation: bxFadeUp .25s ease-out;
}

.bx-sim-detail-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bx-text);
  margin: 0 0 4px;
}

.bx-sim-detail-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bx-red);
  margin-bottom: 12px;
}

.bx-sim-detail-desc {
  font-size: .9rem;
  color: var(--bx-text2);
  line-height: 1.7;
  margin: 0;
}

.bx-sim-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--bx-border);
}

.bx-sim-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .73rem;
  font-weight: 600;
  color: var(--bx-muted);
}

/* Subjects list in detail panel */
.bx-sim-detail-subjects {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--bx-border);
  font-size: .78rem;
  color: var(--bx-muted);
  line-height: 1.6;
}

.bx-sim-detail-subjects strong {
  color: var(--bx-text2);
  font-weight: 700;
}

/* ── DIFFICULTY FILTER ── */
.bx-diff-bar {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--bx-bg-alt);
  border: 1px solid var(--bx-border);
  border-radius: var(--bx-r-lg);
}

.bx-diff-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--bx-muted);
  flex-shrink: 0;
  padding-top: 10px;
  /* vertical-align with first button */
}

.bx-diff-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}

.bx-diff-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 9px 20px;
  border-radius: var(--bx-r);
  border: 1.5px solid var(--bx-border);
  background: #fff;
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s, box-shadow .18s;
  font-size: .83rem;
  font-weight: 700;
  color: var(--bx-text2);
  line-height: 1.3;
  gap: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
}

.bx-diff-btn:hover {
  border-color: var(--bx-red);
  color: var(--bx-red);
  box-shadow: 0 2px 10px rgba(221, 57, 0, .1);
}

.bx-diff-btn.active {
  background: var(--bx-red);
  border-color: var(--bx-red);
  color: #fff;
  box-shadow: 0 3px 14px rgba(221, 57, 0, .28);
}

.bx-diff-btn-sub {
  font-size: .65rem;
  font-weight: 400;
  opacity: .7;
  white-space: nowrap;
}

.bx-diff-btn.active .bx-diff-btn-sub {
  opacity: .88;
}

.bx-sim-card[data-hidden="1"] {
  display: none !important;
}

.bx-cat-btn[style*="display: none"],
.bx-cat-btn[style*="display:none"] {
  display: none !important;
}

.bx-cat-panel-empty {
  display: none;
  text-align: center;
  padding: 48px 0 32px;
  color: var(--bx-muted);
  font-size: .9rem;
}

.bx-cat-panel-empty.visible {
  display: block;
}

@media (max-width: 767px) {
  .bx-cat-layout {
    flex-direction: column;
    min-height: auto;
  }

  .bx-cat-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--bx-border);
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-y: visible;
  }

  .bx-cat-sidebar::-webkit-scrollbar {
    display: none;
  }

  .bx-cat-btn {
    flex-shrink: 0;
    min-width: 100px;
    border-bottom: 3px solid transparent;
    border-left: none;
    flex-direction: column;
    text-align: center;
    padding: 10px 12px;
    gap: 2px;
  }

  .bx-cat-btn.active {
    border-bottom-color: var(--bx-red);
    border-left-color: transparent;
  }

  .bx-cat-btn-num {
    display: none;
  }

  .bx-cat-btn-count {
    display: none;
  }

  .bx-cat-main {
    padding: 20px 18px;
  }

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

  .bx-diff-bar {
    padding: 14px 16px;
    gap: 10px;
  }

  .bx-diff-label {
    padding-top: 0;
    width: 100%;
  }

  .bx-diff-btn {
    padding: 8px 14px;
    font-size: .78rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .bx-cat-sidebar {
    width: 210px;
  }

  .bx-cat-main {
    padding: 24px 22px;
  }
}

/* ── COMPARISON GRID ───────────────────────────────────────── */
.bx-cmp-card {
  background: #fff;
  border-radius: var(--bx-r-lg);
  overflow: hidden;
  box-shadow: var(--bx-shadow-md);
  border: 1px solid var(--bx-border);
}

/* 3-column grid shared by header + rows */
.bx-cmp-head,
.bx-cmp-row {
  display: grid;
  grid-template-columns: 38% 31% 31%;
}

/* ── Header ── */
.bx-cmp-head {
  background: var(--bx-dark);
  border-bottom: none;
}

.bx-cmp-head-empty {
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, .08);
  padding: 14px 16px;
  display: flex;
  align-items: flex-end;
  /* intentionally blank — label rows start below */
}

.bx-cmp-head-col {
  padding: 20px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bx-cmp-head-bad {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .75);
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.bx-cmp-head-good {
  background: var(--bx-red);
  color: #fff;
}

.bx-cmp-rec-badge {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .95);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .3);
  white-space: nowrap;
}

.bx-cmp-head-name {
  font-size: .81rem;
  font-weight: 700;
  line-height: 1.3;
}

.bx-cmp-head-logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}

.bx-cmp-head-sub {
  font-size: .69rem;
  margin-top: 6px;
  opacity: .72;
  font-weight: 400;
  line-height: 1.3;
}

/* ── Rows ── */
.bx-cmp-row {
  border-bottom: 1px solid var(--bx-border);
}

.bx-cmp-row:last-of-type {
  border-bottom: none;
}

.bx-cmp-row:hover .bx-cmp-lbl {
  background: #f3f4f6;
}

.bx-cmp-row:hover .bx-cmp-bad {
  background: #f3f4f6;
}

.bx-cmp-row:hover .bx-cmp-good {
  background: #e6f9f2;
}

.bx-cmp-lbl {
  padding: 13px 16px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--bx-text);
  display: flex;
  align-items: center;
  background: #fafbfc;
  border-right: 1px solid var(--bx-border);
  line-height: 1.4;
}

.bx-cmp-bad,
.bx-cmp-good {
  padding: 13px 12px;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 3px;
  transition: background .1s;
}

.bx-cmp-bad {
  color: #9ca3af;
  font-weight: 600;
  border-right: 1px solid var(--bx-border);
  background: #fff;
}

.bx-cmp-good {
  color: #059669;
  font-weight: 700;
  background: #f2fdf8;
}

/* Numeric highlight */
.bx-cmp-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--bx-red);
  line-height: 1;
}

.bx-cmp-note {
  font-size: .69rem;
  font-weight: 400;
  color: var(--bx-muted);
}

/* Feature rows (with icons) */
.bx-cmp-feat-no {
  flex-direction: row;
  gap: 6px;
  font-size: .79rem;
  font-weight: 400;
  color: var(--bx-muted);
}

.bx-cmp-feat-no svg {
  stroke: #dc2626;
  flex-shrink: 0;
}

.bx-cmp-feat-yes {
  flex-direction: row;
  gap: 6px;
  font-size: .79rem;
  font-weight: 500;
  color: #059669;
}

.bx-cmp-feat-yes svg {
  stroke: #059669;
  flex-shrink: 0;
}

/* ── Savings footer ── */
.bx-cmp-savings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: var(--bx-red-bg);
  border-top: 2px solid rgba(221, 57, 0, .18);
  flex-wrap: wrap;
  gap: 6px;
}

.bx-cmp-sav-lbl {
  font-size: .81rem;
  font-weight: 600;
  color: var(--bx-text);
}

.bx-cmp-sav-val {
  font-size: .92rem;
  font-weight: 800;
  color: var(--bx-red);
  white-space: nowrap;
}

/* Footnote */
.bx-compare-note {
  font-size: .77rem;
  color: var(--bx-muted);
  margin-top: 14px;
  line-height: 1.55;
}

/* ── ROI CARD ── */
.bx-roi-card {
  background: #fff;
  border-radius: var(--bx-r-lg);
  padding: 34px;
  box-shadow: var(--bx-shadow-md);
  border: 1px solid var(--bx-border);
  border-top: 4px solid var(--bx-red);
  position: relative;
  overflow: hidden;
}

.bx-roi-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--bx-red-bg);
  pointer-events: none;
}

.bx-roi-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--bx-text);
  margin: 10px 0 14px;
  line-height: 1.35;
}

.bx-roi-desc {
  color: var(--bx-muted);
  line-height: 1.72;
  margin-bottom: 22px;
  font-size: .9rem;
}

.bx-roi-stat {
  background: var(--bx-red-bg);
  border-radius: var(--bx-r);
  padding: 20px 24px;
  border-left: 4px solid var(--bx-red);
  margin-bottom: 22px;
}

.bx-roi-stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--bx-red);
  line-height: 1;
  letter-spacing: -.03em;
}

.bx-roi-stat-label {
  font-size: .82rem;
  color: var(--bx-muted);
  margin-top: 7px;
  line-height: 1.45;
}

.bx-roi-btn {
  width: 100%;
  justify-content: center;
}

/* ── CALCULATOR ── */
.bx-calc {
  background: #fff;
  border-radius: var(--bx-r-lg);
  padding: 40px;
  box-shadow: var(--bx-shadow-md);
  border: 1px solid var(--bx-border);
}

.bx-calc-label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  color: var(--bx-text);
  margin-bottom: 10px;
}

.bx-calc-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--bx-border);
  border-radius: var(--bx-r);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bx-text);
  transition: border-color .18s;
  -moz-appearance: textfield;
}

.bx-calc-input::-webkit-inner-spin-button,
.bx-calc-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.bx-calc-input:focus {
  outline: none;
  border-color: var(--bx-red);
}

.bx-calc-range {
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  border-radius: 3px;
  margin-top: 10px;
  cursor: pointer;
  background: linear-gradient(to right,
      var(--bx-red) 0%, var(--bx-red) var(--range-pct, 10%),
      var(--bx-border) var(--range-pct, 10%), var(--bx-border) 100%);
}

.bx-calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bx-red);
  box-shadow: 0 2px 6px rgba(221, 57, 0, .35);
}

.bx-calc-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.bx-result-card {
  border-radius: var(--bx-r);
  padding: 18px 14px;
}

.bx-result-card.bad {
  background: rgba(185, 28, 28, .05);
  border: 1px solid rgba(185, 28, 28, .15);
}

.bx-result-card.good {
  background: rgba(5, 150, 105, .05);
  border: 1px solid rgba(5, 150, 105, .18);
}

.bx-result-card.savings {
  background: var(--bx-red);
  border: none;
  grid-column: 1 / -1;
}

.bx-result-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 7px;
  text-align: center;
}

.bad .bx-result-label {
  color: #b91c1c;
}

.good .bx-result-label {
  color: var(--bx-success);
}

.savings .bx-result-label {
  color: rgba(255, 255, 255, .75);
}

.bx-result-value {
  font-size: clamp(.9rem, 3.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: center;
}

.bad .bx-result-value {
  color: #b91c1c;
}

.good .bx-result-value {
  color: var(--bx-success);
}

.savings .bx-result-value {
  color: #fff;
  font-size: clamp(1rem, 4vw, 2rem);
}

.bx-result-sub {
  font-size: .75rem;
  margin-top: 5px;
  color: var(--bx-muted);
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
}

.savings .bx-result-sub {
  color: rgba(255, 255, 255, .7);
}

.bx-savings-track {
  margin-top: 16px;
  background: rgba(255, 255, 255, .18);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
}

.bx-savings-fill {
  height: 100%;
  border-radius: 50px;
  background: rgba(255, 255, 255, .85);
  transition: width .45s ease;
}

/* ── CURRENCY BAR ── */
.bx-currency-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 12px 16px;
  background: var(--bx-bg-alt);
  border-radius: var(--bx-r);
  border: 1px solid var(--bx-border);
}

.bx-currency-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--bx-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
}

.bx-currency-btns {
  display: flex;
  gap: 6px;
}

.bx-currency-btn {
  padding: 5px 14px;
  border-radius: 6px;
  border: 1.5px solid var(--bx-border);
  background: #fff;
  font-size: .78rem;
  font-weight: 700;
  color: var(--bx-muted);
  cursor: pointer;
  transition: all .15s;
  line-height: 1.4;
}

.bx-currency-btn:hover {
  border-color: var(--bx-red);
  color: var(--bx-red);
}

.bx-currency-btn.active {
  background: var(--bx-red);
  border-color: var(--bx-red);
  color: #fff;
}

.bx-currency-note {
  font-size: .7rem;
  color: var(--bx-muted);
  margin-left: auto;
  font-style: italic;
  opacity: .7;
}

/* ── CTA STRIP ── */
.bx-cta-strip {
  background: var(--bx-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bx-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 350px at 50% 50%, rgba(221, 57, 0, .14), transparent 70%);
  pointer-events: none;
}

.bx-cta-strip h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.bx-cta-strip p {
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ── FAQs ── */
.bx-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .bx-faq-grid {
    grid-template-columns: 1fr;
  }
}

.bx-faq {
  background: #fff;
  border: 1px solid var(--bx-border);
  border-radius: var(--bx-r);
  overflow: hidden;
  transition: box-shadow .2s;
}

.bx-faq.open {
  box-shadow: var(--bx-shadow-md);
}

.bx-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: .92rem;
  color: var(--bx-text);
  user-select: none;
  gap: 12px;
}

.bx-faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bx-red-bg);
  color: var(--bx-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .2s;
  font-size: 1.1rem;
  line-height: 1;
}

.bx-faq.open .bx-faq-toggle {
  transform: rotate(45deg);
  background: var(--bx-red);
  color: #fff;
}

/* .bx-faq-a open/close is now handled via max-height in the revised block below */
.bx-faq-a {
  padding: 0 22px 18px;
  color: var(--bx-muted);
  line-height: 1.75;
  font-size: .9rem;
}

/* ── ADOPTION MONITORING ── */
.bx-adopt-section {
  background: var(--bx-dark);
  padding: 88px 0;
}

.bx-adopt-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.bx-adopt-desc {
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.bx-adopt-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bx-adopt-bullet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bx-adopt-bullet-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 107, 61, .15);
  color: #ff6b3d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bx-adopt-bullet-title {
  font-weight: 700;
  color: #fff;
  font-size: .92rem;
  margin-bottom: 3px;
}

.bx-adopt-bullet-desc {
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

.bx-adopt-mock {
  background: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

.bx-adopt-mock-header {
  background: #141824;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bx-adopt-mock-dots {
  display: flex;
  gap: 6px;
}

.bx-adopt-mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.bx-adopt-mock-dots span:nth-child(1) {
  background: #ef4444;
}

.bx-adopt-mock-dots span:nth-child(2) {
  background: #f59e0b;
}

.bx-adopt-mock-dots span:nth-child(3) {
  background: #22c55e;
}

.bx-adopt-mock-title {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
  flex: 1;
  letter-spacing: .02em;
}

.bx-adopt-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: #22c55e;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.bx-adopt-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: bxLivePulse 2s ease-in-out infinite;
}

@keyframes bxLivePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .35;
    transform: scale(.65);
  }
}

.bx-adopt-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.bx-adopt-kpi {
  background: #1a1f2e;
  padding: 18px 20px;
  text-align: center;
}

.bx-adopt-kpi-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.bx-adopt-kpi-label {
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}

.bx-adopt-kpi-success .bx-adopt-kpi-num {
  color: #4ade80;
}

.bx-adopt-table {
  padding: 0 18px;
}

.bx-adopt-thead,
.bx-adopt-row {
  display: grid;
  grid-template-columns: 1.4fr 1.8fr .6fr .9fr;
  gap: 8px;
  padding: 10px 0;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .8rem;
}

.bx-adopt-thead {
  color: rgba(255, 255, 255, .3);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  padding-top: 16px;
  border-bottom-color: rgba(255, 255, 255, .08);
}

.bx-adopt-row:last-child {
  border-bottom: none;
}

.bx-adopt-prof {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  font-size: .8rem;
}

.bx-adopt-sim {
  color: rgba(255, 255, 255, .5);
  font-size: .77rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bx-adopt-num {
  color: rgba(255, 255, 255, .8);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.bx-adopt-date {
  color: rgba(255, 255, 255, .4);
  font-size: .74rem;
}

.bx-adopt-today {
  color: #4ade80;
  font-weight: 700;
}

.bx-adopt-row-warn {
  background: rgba(239, 68, 68, .06);
  border-radius: 6px;
  border: 1px solid rgba(239, 68, 68, .18) !important;
  margin: 3px -4px;
  padding-left: 12px;
  padding-right: 12px;
}

.bx-adopt-alert-badge {
  background: rgba(239, 68, 68, .18);
  color: #f87171;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: .68rem;
  font-weight: 700;
  white-space: nowrap;
}

.bx-adopt-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.bx-adopt-bar-label {
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
}

.bx-adopt-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, .1);
  border-radius: 4px;
  overflow: hidden;
}

.bx-adopt-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b3d, #dd3900);
  border-radius: 4px;
}

.bx-adopt-bar-pct {
  font-size: .8rem;
  font-weight: 800;
  color: #ff6b3d;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .bx-adopt-section {
    padding: 56px 0;
  }
}

/* ── CONTACT ── */
.bx-contact {
  background: var(--bx-dark);
  padding: 88px 0;
}

.bx-contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.bx-contact-info p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 28px;
}

.bx-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bx-contact-row-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--bx-r);
  background: rgba(221, 57, 0, .18);
  color: #ff6b3d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bx-contact-row a {
  color: rgba(255, 165, 0, .9);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}

.bx-contact-row a:hover {
  color: #ffd700;
}

.bx-contact-row span {
  color: rgba(255, 255, 255, .45);
  font-size: .75rem;
  display: block;
  margin-bottom: 2px;
}

.bx-clickup-wrap {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--bx-r-lg);
  overflow: hidden;
  min-height: 580px;
}

.bx-clickup-wrap iframe {
  display: block;
  width: 100% !important;
  min-height: 580px;
  border: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .bx-section {
    padding: 60px 0;
  }

  .bx-hero {
    padding: 70px 0 56px;
  }

  .bx-calc {
    padding: 24px;
  }

  .bx-preview-card {
    margin-top: 36px;
  }

  .bx-stat-item {
    min-width: 120px;
    padding: 0 12px;
  }

  .bx-stat-num {
    font-size: 1.5rem;
  }

  .bx-compare td,
  .bx-compare th {
    padding: 10px 12px;
    font-size: .82rem;
  }

  .bx-hero-btns .bx-btn:first-child {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .bx-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .bx-step {
    flex-direction: column;
    gap: 14px;
  }
}

/* scroll padding for fixed header */
html {
  scroll-padding-top: 80px;
}

/* Fallback for browsers that don't support scroll behavior */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


/* ═══════════════════════════════════════════════════════════
   ADVANCED FILTER BAR
   ═══════════════════════════════════════════════════════════ */
#bx-filter-bar {
  background: #fff;
  border: 1px solid var(--bx-border);
  border-radius: var(--bx-r-lg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
  margin-bottom: 28px;
  overflow: hidden;
}

/* ── Search row ── */
.bx-filter-search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--bx-border);
}

.bx-search-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.bx-search-icon {
  position: absolute;
  left: 14px;
  color: var(--bx-muted);
  pointer-events: none;
  flex-shrink: 0;
}

.bx-search-input {
  width: 100%;
  padding: 10px 40px 10px 42px;
  border: 1.5px solid var(--bx-border);
  border-radius: 50px;
  font-size: .88rem;
  color: var(--bx-text);
  background: var(--bx-bg-alt);
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
  -webkit-appearance: none;
}

.bx-search-input::placeholder {
  color: var(--bx-muted);
}

.bx-search-input:focus {
  border-color: var(--bx-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(221, 57, 0, .1);
}

/* Hide browser native clear button on search inputs */
.bx-search-input::-webkit-search-cancel-button {
  display: none;
}

.bx-search-clear {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--bx-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s, background .15s;
}

.bx-search-clear:hover {
  color: var(--bx-red);
  background: var(--bx-red-bg);
}

/* ── Filter meta (count + reset) ── */
.bx-filter-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bx-filter-count {
  font-size: .78rem;
  font-weight: 700;
  color: var(--bx-muted);
  white-space: nowrap;
  background: var(--bx-bg-alt);
  border: 1px solid var(--bx-border);
  padding: 4px 12px;
  border-radius: 50px;
}

.bx-filter-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: none;
  border: 1.5px solid var(--bx-red);
  border-radius: 50px;
  color: var(--bx-red);
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.bx-filter-reset:hover {
  background: var(--bx-red);
  color: #fff;
}

/* ── Filter chips row ── */
.bx-filter-chips-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 14px 20px;
}

.bx-filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bx-fg-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--bx-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.bx-fg-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.bx-fg-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--bx-border);
  background: #fff;
  font-size: .78rem;
  font-weight: 600;
  color: var(--bx-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s, color .15s, background .15s, box-shadow .15s;
  line-height: 1.2;
}

.bx-fg-btn svg {
  flex-shrink: 0;
  opacity: .7;
}

.bx-fg-btn:hover {
  border-color: var(--bx-red);
  color: var(--bx-red);
}

.bx-fg-btn.active {
  background: var(--bx-red);
  border-color: var(--bx-red);
  color: #fff;
  box-shadow: 0 2px 10px rgba(221, 57, 0, .25);
}

.bx-fg-btn.active svg {
  opacity: 1;
}

/* Level color dots */
.bx-fg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bx-fg-dot--basic {
  background: #2563eb;
}

.bx-fg-dot--inter {
  background: #7c3aed;
}

.bx-fg-dot--adv {
  background: #d97706;
}

.bx-fg-btn--basic.active .bx-fg-dot--basic {
  background: rgba(255, 255, 255, .8);
}

.bx-fg-btn--inter.active .bx-fg-dot--inter {
  background: rgba(255, 255, 255, .8);
}

.bx-fg-btn--adv.active .bx-fg-dot--adv {
  background: rgba(255, 255, 255, .8);
}

/* Separator between filter groups */
.bx-filter-sep {
  width: 1px;
  height: 28px;
  background: var(--bx-border);
  margin: 0 18px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   SEARCH RESULTS GRID
   ═══════════════════════════════════════════════════════════ */
#bx-search-results {
  animation: bxFadeUp .28s ease-out;
}

.bx-search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

/* ── Search card ── */
.bx-sc {
  background: #fff;
  border: 1.5px solid var(--bx-border);
  border-radius: var(--bx-r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: default;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.bx-sc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bx-border);
  transition: background .2s;
}

.bx-sc:hover {
  border-color: rgba(221, 57, 0, .3);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .09);
  transform: translateY(-3px);
}

.bx-sc:hover::before {
  background: var(--bx-red);
}

.bx-sc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.bx-sc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bx-red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bx-red);
}

.bx-sc-icon svg {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  stroke: var(--bx-red);
  fill: none;
}

.bx-sc-cat {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
  flex-shrink: 0;
  margin-left: auto;
}

.bx-sc-name {
  font-size: .92rem;
  font-weight: 700;
  color: var(--bx-text);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bx-sc-desc {
  font-size: .8rem;
  color: var(--bx-muted);
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.bx-sc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.bx-sc-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .67rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .3px;
  white-space: nowrap;
}

.bx-sc-pill-rounds {
  background: var(--bx-bg-alt);
  color: var(--bx-muted);
  border: 1px solid var(--bx-border);
}

.bx-sc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--bx-red) !important;
  text-decoration: none !important;
  margin-top: 4px;
  transition: gap .15s;
}

.bx-sc-link:hover {
  gap: 8px;
}

/* ── Empty state ── */
.bx-search-empty {
  text-align: center;
  padding: 64px 0;
  color: var(--bx-muted);
}

.bx-search-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bx-bg-alt);
  border: 2px solid var(--bx-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--bx-muted);
}

.bx-search-empty-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bx-text);
  margin: 0 0 8px;
}

.bx-search-empty-sub {
  font-size: .88rem;
  color: var(--bx-muted);
}

/* ── Language filter ── */
.bx-filter-sep--full {
  width: 100%;
  height: 1px;
  background: var(--bx-border);
  margin: 2px 0;
  flex-shrink: 0;
}

.bx-filter-group--langs {
  flex-wrap: wrap;
}

.bx-fg-btns--langs {
  flex-wrap: wrap;
  gap: 5px;
}

.bx-fg-btn--lang {
  font-size: .73rem;
  padding: 5px 11px;
}

.bx-lang-flag {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .5px;
  background: var(--bx-border);
  color: var(--bx-muted);
  padding: 1px 5px;
  border-radius: 3px;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}

.bx-fg-btn--lang.active .bx-lang-flag {
  background: rgba(255, 255, 255, .25);
  color: #fff;
}

/* ── Category quick-nav (search mode) ── */
.bx-search-cats {
  display: flex;
  gap: 7px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 14px;
  scrollbar-width: none;
}

.bx-search-cats:empty {
  display: none;
}

.bx-search-cats::-webkit-scrollbar {
  display: none;
}

.bx-scat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--bx-border);
  background: #fff;
  font-size: .78rem;
  font-weight: 600;
  color: var(--bx-muted);
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .15s, color .15s, background .15s, box-shadow .15s;
}

.bx-scat-chip:not([data-scat="all"]):hover {
  border-color: var(--scat-color, var(--bx-red));
  color: var(--scat-color, var(--bx-red));
}

.bx-scat-chip[data-scat="all"]:hover {
  border-color: var(--bx-red);
  color: var(--bx-red);
}

.bx-scat-chip.active {
  background: var(--scat-color, var(--bx-red));
  border-color: var(--scat-color, var(--bx-red));
  color: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
}

.bx-scat-chip[data-scat="all"].active {
  background: var(--bx-text);
  border-color: var(--bx-text);
}

.bx-scat-count {
  font-size: .68rem;
  font-weight: 800;
  background: rgba(0, 0, 0, .1);
  padding: 1px 7px;
  border-radius: 50px;
  min-width: 22px;
  text-align: center;
}

.bx-scat-chip.active .bx-scat-count {
  background: rgba(255, 255, 255, .25);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .bx-search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .bx-filter-chips-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
  }

  .bx-filter-sep {
    width: 100%;
    height: 1px;
    margin: 2px 0;
  }

  .bx-filter-search-row {
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .bx-filter-meta {
    width: 100%;
  }

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

  .bx-fg-btns {
    gap: 5px;
  }

  .bx-fg-btn {
    font-size: .72rem;
    padding: 5px 12px;
  }

  .bx-fg-btns--langs {
    max-height: 90px;
    overflow-y: auto;
    scrollbar-width: thin;
  }

  .bx-filter-sep--full {
    display: block;
    margin: 4px 0;
  }
}


/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY SCALE IMPROVEMENTS
   ═══════════════════════════════════════════════════════════ */
.bx-sub {
  font-size: 1.08rem;
  line-height: 1.8;
}

.bx-section-head .bx-sub {
  font-size: 1.05rem;
  max-width: 640px;
}

.bx-vp-card p,
.bx-who-card p {
  font-size: .94rem;
  line-height: 1.75;
}

.bx-vp-card h3,
.bx-who-card h4 {
  font-size: 1.08rem;
}

.bx-step h3 {
  font-size: 1.15rem;
}

.bx-step p {
  font-size: .97rem;
}

.bx-faq-q {
  font-size: .97rem;
  font-weight: 600;
}

.bx-faq-a {
  font-size: .95rem;
  line-height: 1.75;
}


/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.bx-rv {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .55s cubic-bezier(.22, 1, .36, 1) var(--rv-delay, 0ms),
    transform .55s cubic-bezier(.22, 1, .36, 1) var(--rv-delay, 0ms);
}

.bx-rv.bx-rv-left {
  transform: translateX(-28px);
}

.bx-rv.bx-rv-right {
  transform: translateX(28px);
}

.bx-rv.bx-rv-scale {
  transform: scale(.95);
}

.bx-rv.bx-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .bx-rv {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   HERO — GRID PATTERN + IMPROVED GRADIENT
   ═══════════════════════════════════════════════════════════ */
.bx-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .4) 30%, rgba(0, 0, 0, .4) 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .4) 30%, rgba(0, 0, 0, .4) 70%, transparent);
}

.bx-hero-badge {
  animation: bxBadgePop .6s cubic-bezier(.34, 1.56, .64, 1) .1s both;
}

@keyframes bxBadgePop {
  from {
    opacity: 0;
    transform: scale(.8) translateY(-6px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.bx-title-lg {
  animation: bxSlideUp .7s cubic-bezier(.22, 1, .36, 1) .2s both;
}

.bx-hero-sub {
  animation: bxSlideUp .7s cubic-bezier(.22, 1, .36, 1) .35s both;
}

.basics-hero-cta {
  animation: bxSlideUp .7s cubic-bezier(.22, 1, .36, 1) .5s both;
}

.bx-preview-card {
  animation: bxSlideUp .8s cubic-bezier(.22, 1, .36, 1) .4s both;
}

@keyframes bxSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ═══════════════════════════════════════════════════════════
   STATS BAR — NUMBER GLOW
   ═══════════════════════════════════════════════════════════ */
.bx-stat-num {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--bx-red), #ff6b3d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bx-stat-item {
  transition: transform .25s;
}

.bx-stat-item:hover {
  transform: translateY(-3px);
}


/* ═══════════════════════════════════════════════════════════
   SECCIÓN — SEPARADORES DE COLOR
   ═══════════════════════════════════════════════════════════ */
.bx-section+.bx-section,
.bx-stats-bar+.bx-section {
  position: relative;
}

/* Top accent line on dark sections */
.bx-bg-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221, 57, 0, .5), transparent);
  pointer-events: none;
}

/* ─── CÓMO FUNCIONA — step redesign ─── */
.bx-step {
  padding: 32px 0;
  gap: 24px;
  position: relative;
}

.bx-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  bottom: 0;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--bx-border), transparent);
}

.bx-step-num {
  width: 52px;
  height: 52px;
  font-size: 1.05rem;
  box-shadow: 0 4px 16px rgba(221, 57, 0, .35);
  position: relative;
  flex-shrink: 0;
}

.bx-step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px dashed rgba(221, 57, 0, .25);
  animation: bxSpinSlow 12s linear infinite;
}

@keyframes bxSpinSlow {
  to {
    transform: rotate(360deg);
  }
}


/* ═══════════════════════════════════════════════════════════
   VALUE PROPS — DARK SECTION
   ═══════════════════════════════════════════════════════════ */
.bx-vp-dark {
  position: relative;
  overflow: hidden;
}

/* Subtle noise texture overlay */
.bx-vp-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(221, 57, 0, .12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, .08) 0%, transparent 50%);
  pointer-events: none;
}

/* Override text colors for dark bg */
.bx-vp-dark .bx-section-head .bx-title {
  color: #fff;
}

.bx-vp-dark .bx-section-head .bx-sub {
  color: rgba(249, 244, 234, .6);
}

.bx-vp-dark .bx-vp-card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.bx-vp-dark .bx-vp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--bx-r-lg);
  opacity: 0;
  background: linear-gradient(135deg, rgba(221, 57, 0, .12), rgba(255, 107, 61, .06));
  transition: opacity .3s;
  pointer-events: none;
}

.bx-vp-dark .bx-vp-card:hover {
  border-color: rgba(221, 57, 0, .4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.bx-vp-dark .bx-vp-card:hover::before {
  opacity: 1;
}

.bx-vp-dark .bx-vp-card h3 {
  color: #fff;
}

.bx-vp-dark .bx-vp-card p {
  color: rgba(249, 244, 234, .6);
}

.bx-vp-dark .bx-vp-icon {
  background: rgba(221, 57, 0, .2);
  border: 1px solid rgba(221, 57, 0, .3);
}


/* ═══════════════════════════════════════════════════════════
   CATALOG — DARK SECTION
   ═══════════════════════════════════════════════════════════ */
.bx-catalog-dark .bx-section-head .bx-title {
  color: #fff !important;
}

.bx-catalog-dark .bx-section-head .bx-sub {
  color: rgba(249, 244, 234, .6) !important;
}


/* ═══════════════════════════════════════════════════════════
   PLANS — DARK SECTION
   ═══════════════════════════════════════════════════════════ */
.bx-plans-dark {
  position: relative;
  overflow: hidden;
}

.bx-plans-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 700px 400px at 50% 100%, rgba(221, 57, 0, .1) 0%, transparent 70%);
  pointer-events: none;
}

/* Section heading */
.bx-plans-dark .bx-section-head .bx-title {
  color: #fff;
}

.bx-plans-dark .bx-section-head .bx-sub {
  color: rgba(249, 244, 234, .6);
}

/* Plans grid wrapper */
.bx-plans-dark .col-lg-10>div {
  border-color: rgba(255, 255, 255, .12) !important;
  border-radius: var(--bx-r-lg) !important;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .4) !important;
  position: relative;
  z-index: 1;
}

/* STARTER card on dark */
.bx-plans-dark .col-lg-10>div>div:first-child {
  background: rgba(255, 255, 255, .04) !important;
  border-right-color: rgba(255, 255, 255, .12) !important;
}

.bx-plans-dark .col-lg-10>div>div:first-child h3 {
  color: #fff !important;
}

.bx-plans-dark .col-lg-10>div>div:first-child li {
  color: rgba(255, 255, 255, .6) !important;
}

.bx-plans-dark .col-lg-10>div>div:first-child p {
  color: rgba(255, 255, 255, .4) !important;
}

/* EXPRESS card — keep dark bg, amplify it */
.bx-plans-dark .col-lg-10>div>div:last-child {
  background: rgba(221, 57, 0, .15) !important;
  border-left: 1px solid rgba(221, 57, 0, .3) !important;
}


/* ═══════════════════════════════════════════════════════════
   WHO CARDS — extra polish
   ═══════════════════════════════════════════════════════════ */
.bx-who-card {
  transition: transform .25s, box-shadow .25s, border-top-color .25s;
}

.bx-who-card:hover {
  border-top-color: var(--bx-red);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}


/* ═══════════════════════════════════════════════════════════
   COMPARISON TABLE — improved
   ═══════════════════════════════════════════════════════════ */
.bx-compare td,
.bx-compare th {
  font-size: .93rem;
}

.bx-compare tbody tr {
  transition: background .15s;
}

.bx-compare tbody tr:hover td {
  background: rgba(221, 57, 0, .03);
}


/* ═══════════════════════════════════════════════════════════
   FAQ — improved accordion
   ═══════════════════════════════════════════════════════════ */
.bx-faq {
  border-radius: var(--bx-r);
  border: 1px solid var(--bx-border);
  margin-bottom: 0;
  background: #fff;
  transition: box-shadow .2s, border-color .2s;
  overflow: hidden;
  /* Flex column so .bx-faq-q stretches to fill card height */
  display: flex;
  flex-direction: column;
}

.bx-faq.open {
  border-color: rgba(221, 57, 0, .25);
  box-shadow: 0 4px 20px rgba(221, 57, 0, .08);
}

.bx-faq-q {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  flex: 1;
  /* fills remaining height when card is stretched */
  min-height: 68px;
}

.bx-faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bx-bg-alt);
  border: 1px solid var(--bx-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--bx-muted);
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .3s;
}

.bx-faq.open .bx-faq-toggle {
  background: var(--bx-red);
  border-color: var(--bx-red);
  color: #fff;
  transform: rotate(45deg);
}

.bx-faq-a {
  display: block !important;
  /* override old display:none — animation is via max-height */
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.22, 1, .36, 1), padding .35s;
  color: var(--bx-muted);
}

.bx-faq.open .bx-faq-a {
  max-height: 400px;
  padding: 0 22px 18px;
}


/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION — brighter
   ═══════════════════════════════════════════════════════════ */
.bx-contact {
  background: var(--bx-dark);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.bx-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 400px at 0% 100%, rgba(221, 57, 0, .12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 100% 0%, rgba(37, 99, 235, .06) 0%, transparent 70%);
  pointer-events: none;
}

.bx-contact h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.bx-contact p {
  color: rgba(255, 255, 255, .65);
}

.bx-contact-info .bx-label {
  color: #ff6b3d;
}

.bx-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.bx-contact-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b3d;
  flex-shrink: 0;
}

.bx-contact-row span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255, 255, 255, .4);
  display: block;
  margin-bottom: 2px;
}

.bx-contact-row a {
  color: #fff !important;
  font-weight: 600;
  font-size: .93rem;
  text-decoration: none !important;
}

.bx-contact-row a:hover {
  color: #ff6b3d !important;
}


/* ═══════════════════════════════════════════════════════════
   SECTION BACKGROUNDS — add gradient dividers
   ═══════════════════════════════════════════════════════════ */
.bx-bg-alt {
  position: relative;
}

/* Subtle diagonal texture on light sections */
.bx-bg-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, .04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: .5;
}


/* ═══════════════════════════════════════════════════════════
   SECTION PADDING — slightly increase breathing room
   ═══════════════════════════════════════════════════════════ */
.bx-section {
  padding: 96px 0;
}

.bx-section-head {
  margin-bottom: 60px;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .bx-section {
    padding: 64px 0;
  }

  .bx-vp-dark .bx-vp-card {
    backdrop-filter: none;
  }

  .bx-step-num::after {
    display: none;
  }

  .bx-plans-dark .col-lg-10>div {
    grid-template-columns: 1fr !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   LUCIDE ICONS — normalization
   Lucide replaces <i data-lucide> with <svg>.
   We ensure the SVG inherits the inline width/height set by
   bx_icon() and displays correctly inside flex containers.
   ═══════════════════════════════════════════════════════════ */
i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
}

/* After createIcons() fires, the <i> becomes <svg>.
   Target SVG children inside every icon container. */
.bx-vp-icon svg,
.bx-who-icon svg,
.bx-feature-card-icon svg,
.bx-adopt-bullet-icon svg,
.bx-contact-row-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Buttons: keep arrow/check/x icons tight */
.bx-btn svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Filter chip icons */
.bx-fg-btn svg {
  opacity: .85;
}

.bx-fg-btn.active svg {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════
   FEATURE CARDS — "Qué es Express" section
   Replaces the previous inline-styled divs.
   ═══════════════════════════════════════════════════════════ */
.bx-feature-card {
  background: #fff;
  border-radius: var(--bx-r-lg);
  padding: 24px;
  height: 100%;
  border: 1px solid var(--bx-border);
  border-top: 3px solid var(--bx-red);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
  transition: transform .25s cubic-bezier(.22, 1, .36, 1),
    box-shadow .25s cubic-bezier(.22, 1, .36, 1);
}

.bx-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

.bx-feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bx-red-bg);
  color: var(--bx-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.bx-feature-card-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--bx-text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.bx-feature-card-desc {
  font-size: .85rem;
  color: var(--bx-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767px) {
  .bx-feature-card {
    padding: 18px;
  }
}


/* ═══════════════════════════════════════════════════════════
   ICON COLOR FIXES
   ═══════════════════════════════════════════════════════════ */

/* Feature card icons → orange */
.bx-feature-card-icon {
  color: var(--bx-red);
}

.bx-feature-card-icon svg {
  color: var(--bx-red);
  stroke: var(--bx-red);
}

/* VP icons in dark section → white */
.bx-vp-dark .bx-vp-icon {
  color: #fff;
}

.bx-vp-dark .bx-vp-icon svg {
  stroke: #fff;
  color: #fff;
}


/* ═══════════════════════════════════════════════════════════
   ADOPTION MONITORING — LIGHT SECTION
   Fixes two consecutive dark sections (Planes + Adoption).
   The mock dashboard card keeps its own dark bg.
   ═══════════════════════════════════════════════════════════ */
.bx-adopt-section.bx-bg-alt {
  background: var(--bx-bg-alt) !important;
}

.bx-adopt-section.bx-bg-alt .bx-adopt-title {
  color: var(--bx-text);
}

.bx-adopt-section.bx-bg-alt .bx-adopt-desc {
  color: var(--bx-muted);
}

.bx-adopt-section.bx-bg-alt .bx-adopt-bullet-title {
  color: var(--bx-text);
}

.bx-adopt-section.bx-bg-alt .bx-adopt-bullet-desc {
  color: var(--bx-muted);
}

.bx-adopt-section.bx-bg-alt .bx-adopt-bullet-icon {
  background: var(--bx-red-bg);
  color: var(--bx-red);
}

/* Dot pattern overlay from bx-bg-alt applies — remove it for this section */
.bx-adopt-section.bx-bg-alt::before {
  display: none;
}


/* ═══════════════════════════════════════════════════════════
   FONT SIZES — legibility pass
   ═══════════════════════════════════════════════════════════ */
.bx-sub {
  font-size: 1.12rem;
  line-height: 1.85;
}

.bx-section-head .bx-sub {
  font-size: 1.08rem;
}

.bx-hero-sub {
  font-size: 1.18rem;
  line-height: 1.8;
}

.bx-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.bx-step p {
  font-size: 1rem;
  line-height: 1.8;
}

.bx-faq-q {
  font-size: 1rem;
  font-weight: 600;
}

.bx-faq-a {
  font-size: .97rem;
  line-height: 1.8;
}

.bx-vp-card h3 {
  font-size: 1.12rem;
}

.bx-vp-card p {
  font-size: .97rem;
  line-height: 1.78;
}

.bx-who-card h4 {
  font-size: 1.05rem;
}

.bx-who-card p {
  font-size: .92rem;
  line-height: 1.75;
}

.bx-feature-card-title {
  font-size: 1rem;
}

.bx-feature-card-desc {
  font-size: .88rem;
  line-height: 1.7;
}

.bx-stat-num {
  font-size: 2.4rem !important;
}

.bx-stat-label {
  font-size: .76rem !important;
}