@charset "utf-8";
/* CSS Document */
/* SCOPED STYLES - PREVENT CONFLICTS WITH EXISTING CSS */
.bml-hero-section {
  --bml-bg: #090a0c;
  --bml-accent: #a3eb14;
  --bml-text: #ffffff;
  --bml-text-dim: #9aa0a6;
  --bml-border: rgba(255, 255, 255, 0.12);
  
  background-color: var(--bml-bg);
  /* Abstract dark glowing wave background */
  background-image: 
    radial-gradient(circle at 80% 80%, rgba(163, 235, 20, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(163, 235, 20, 0.08) 0%, transparent 50%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 24px 24px;
  color: var(--bml-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 60px 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.bml-hero-section *, 
.bml-hero-section *::before, 
.bml-hero-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bml-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT SIDE LAYOUT */
.bml-hero-content {
  flex: 1;
  max-width: 620px;
}

.bml-hero-badge {
  color: var(--bml-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.bml-hero-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.bml-text-accent {
  color: var(--bml-accent);
}

.bml-hero-subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 16px;
}

.bml-hero-description {
  font-size: 14px;
  line-height: 1.6;
  color: #b0b5bd;
  margin-bottom: 28px;
}

.bml-hero-description strong {
  color: #ffffff;
}

/* ACTION BUTTONS */
.bml-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.bml-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.bml-btn-primary {
  background-color: var(--bml-accent);
  color: #000000;
  border: 2px solid var(--bml-accent);
}

.bml-btn-primary:hover {
  background-color: #b8f828;
  border-color: #b8f828;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(163, 235, 20, 0.3);
}

.bml-btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid var(--bml-border);
  gap: 8px;
}

.bml-btn-outline:hover {
  border-color: var(--bml-accent);
  color: var(--bml-accent);
  transform: translateY(-2px);
}

.bml-arrow-icon {
  transition: transform 0.2s ease;
}

.bml-btn-outline:hover .bml-arrow-icon {
  transform: translateX(4px);
}

/* STATS GRID */
.bml-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.bml-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bml-border);
  border-radius: 5px;
  padding: 14px 10px;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease;
}

.bml-stat-card:hover {
  border-color: rgba(163, 235, 20, 0.4);
}

.bml-stat-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--bml-accent);
  margin-bottom: 4px;
}

.bml-stat-label {
  font-size: 11px;
  color: #9aa0a6;
  line-height: 1.2;
}

/* RIGHT GRAPHIC / ORBIT DESIGN */
.bml-hero-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 420px;
}

.bml-orbit-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

/* Lines connecting nodes */
.bml-lines-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  stroke: rgba(163, 235, 20, 0.35);
  stroke-width: 1.5;
}

/* Center ROAS Node */
.bml-center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(15, 22, 10, 0.95) 0%, rgba(5, 8, 3, 0.98) 100%);
  border: 2px solid var(--bml-accent);
  border-radius: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(163, 235, 20, 0.25);
  transition: transform 0.3s ease;
}

.bml-center-node:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.bml-node-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

.bml-node-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--bml-accent);
  line-height: 1;
  margin: 4px 0;
}

.bml-node-sub {
  font-size: 11px;
  color: #8f96a0;
  margin-bottom: 4px;
}

/* Orbiting Nodes positioning */
.bml-orbit-node {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
  cursor: pointer;
}

.bml-orbit-node:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.bml-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.bml-node-tag {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* Node Positioning on Grid */
.bml-pos-tl { top: 18%; left: 28%; }
.bml-pos-tr { top: 18%; left: 72%; }
.bml-pos-rm { top: 50%; left: 83%; }
.bml-pos-br { top: 82%; left: 72%; }
.bml-pos-bl { top: 82%; left: 28%; }
.bml-pos-lm { top: 50%; left: 17%; }

/* CAC & LTV Metric Nodes */
.bml-stat-circle {
  flex-direction: column;
  color: #000000;
}

.bml-stat-head {
  font-size: 11px;
  font-weight: 700;
  color: #555;
}

.bml-stat-val {
  font-size: 16px;
  font-weight: 800;
  color: #000;
}

.bml-arrow-down { color: #d93025; font-weight: bold; }
.bml-arrow-up { color: #188038; font-weight: bold; }

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .bml-hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .bml-hero-content {
    max-width: 100%;
  }

  .bml-hero-actions {
    justify-content: center;
  }

  .bml-hero-graphic {
    min-width: unset;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .bml-hero-title {
    font-size: 30px;
  }

  .bml-hero-subtitle {
    font-size: 16px;
  }

  .bml-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .bml-orbit-wrapper {
    width: 320px;
    height: 320px;
  }

  .bml-lines-svg {
    viewBox: 0 0 320 320;
  }

  .bml-center-node {
    width: 130px;
    height: 130px;
  }

  .bml-node-value {
    font-size: 26px;
  }

  .bml-icon-circle {
    width: 54px;
    height: 54px;
  }

  .bml-stat-val {
    font-size: 13px;
  }

  .bml-node-tag {
    font-size: 10px;
  }
}


/* RIGHT SIDE FORM */
.uap-right-form {
  flex: 0.9;
  width: 100%;
}

.uap-form-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 5px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.uap-form-header {
  text-align: center;
  margin-bottom: 24px;
}

.uap-form-header h2 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.3px;
}

.uap-form-header p {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6c757d;
  margin-top: 4px;
}

/* Form Inputs */
.uap-input-group {
  position: relative;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.uap-input-icon {
  position: absolute;
  left: 14px;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.uap-input-icon svg {
  width: 18px;
  height: 18px;
  stroke: #9ca3af;
}

.uap-input-group input,
.uap-input-group select {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border-radius: 5px;
  font-size: 0.85rem;
  color: #111827;
  outline: none;
  background-color: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  height: 65px;
  border: 0px;
}

.uap-input-group input::placeholder {
  color: #9ca3af;
}

.uap-input-group select:invalid {
  color: #9ca3af;
}

.uap-input-group input:focus,
.uap-input-group select:focus {
  border-color: #b0e200;
  box-shadow: 0 0 0 3px rgba(176, 226, 0, 0.2);
}

.uap-select-group {
  position: relative;
}

.uap-dropdown-arrow {
  position: absolute;
  right: 14px;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.uap-dropdown-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #111827;
}

/* Submit Button */
.uap-submit-btn {
  width: 100%;
  background-color: #b0e200;
  color: #000000;
  border: none;
  border-radius: 5px;
  padding: 16px;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.2s ease;
}

.uap-submit-btn svg {
  width: 18px;
  height: 18px;
}

.uap-submit-btn:hover {
  background-color: #9cd100;
  transform: translateY(-1px);
}

/* Privacy Guarantee Tag */
.uap-privacy-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.uap-privacy-tag svg {
  width: 14px;
  height: 14px;
  stroke: #111827;
}

.uap-privacy-tag span {
  font-size: 0.72rem;
  font-weight: 800;
  color: #111827;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1024px) {
  .uap-container {
    flex-direction: column;
  }
  .uap-left-content,
  .uap-right-form {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 768px) {
  .uap-title {
    font-size: 2.3rem;
  }
  .uap-middle-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .uap-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .uap-actions-row {
    flex-direction: column;
  }
  .uap-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .uap-stats-row {
    grid-template-columns: 1fr;
  }
  .uap-form-card {
    padding: 24px 16px;
  }
}
/* SCOPED STYLES - PREVENT ANY CSS CONFLICTS */
.bml-wbc-section {
  --bml-wbc-bg: #ffffff;
  --bml-wbc-accent: #92cf00;
  --bml-wbc-title-color: #111111;
  --bml-wbc-text-color: #666666;
  --bml-wbc-border: #e8e8e8;
  --bml-wbc-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);

  background-color: var(--bml-wbc-bg);
  padding: 60px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  width: 100%;
}

.bml-wbc-section *,
.bml-wbc-section *::before,
.bml-wbc-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bml-wbc-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* HEADER STYLES */
.bml-wbc-header {
  text-align: center;
  margin-bottom: 40px;
}

.bml-wbc-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--bml-wbc-title-color);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.bml-wbc-highlight {
  color: var(--bml-wbc-accent);
}

.bml-wbc-subtitle {
  font-size: 15px;
  color: var(--bml-wbc-text-color);
  font-weight: 400;
}

.bml-wbc-subtitle strong {
  color: var(--bml-wbc-title-color);
  font-weight: 700;
}

/* GRID LAYOUT */
.bml-wbc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* CARD STYLES */
.bml-wbc-card {
  background: #ffffff;
  border: 1px solid var(--bml-wbc-border);
  border-radius: 5px;
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: var(--bml-wbc-shadow);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  height: 100%;
}

.bml-wbc-card:hover {
  transform: translateY(-6px);
  border-color: var(--bml-wbc-accent);
  box-shadow: 0 10px 25px rgba(146, 207, 0, 0.15);
}

/* ICON STYLES */
.bml-wbc-icon-wrapper {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.bml-wbc-card:hover .bml-wbc-icon-wrapper {
  transform: scale(1.1);
}

.bml-wbc-icon {
  width: 100%;
  height: 100%;
}

/* CARD CONTENT */
.bml-wbc-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--bml-wbc-title-color);
  line-height: 1.25;
  margin-bottom: 10px;
}

.bml-wbc-card-text {
  font-size: 12px;
  color: var(--bml-wbc-text-color);
  line-height: 1.4;
  font-weight: 400;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .bml-wbc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .bml-wbc-title {
    font-size: 24px;
  }
  
  .bml-wbc-subtitle {
    font-size: 14px;
  }

  .bml-wbc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .bml-wbc-card {
    padding: 20px 12px;
  }

  .bml-wbc-card-title {
    font-size: 13px;
  }

  .bml-wbc-card-text {
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .bml-wbc-grid {
    grid-template-columns: 1fr;
  }
}
/* SCOPED STYLES - ISOLATED TO PREVENT CSS CONFLICTS */
.bml-pms-section {
  --bml-pms-bg: #ffffff;
  --bml-pms-accent: #92cf00;
  --bml-pms-title-color: #111111;
  --bml-pms-text-color: #666666;
  --bml-pms-border: #e8e8e8;
  --bml-pms-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);

  background-color: var(--bml-pms-bg);
  padding: 60px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  width: 100%;
}

.bml-pms-section *,
.bml-pms-section *::before,
.bml-pms-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bml-pms-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* HEADER */
.bml-pms-header {
  text-align: center;
  margin-bottom: 40px;
}

.bml-pms-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--bml-pms-title-color);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.bml-pms-highlight {
  color: var(--bml-pms-accent);
}

/* GRID LAYOUT */
.bml-pms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* CARD DESIGN */
.bml-pms-card {
  background: #ffffff;
  border: 1px solid var(--bml-pms-border);
  border-radius: 5px;
  padding: 32px 18px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--bml-pms-shadow);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.bml-pms-card:hover {
  transform: translateY(-6px);
  border-color: var(--bml-pms-accent);
  box-shadow: 0 10px 25px rgba(146, 207, 0, 0.15);
}

/* ICON CONTAINER */
.bml-pms-icon-wrapper {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.bml-pms-card:hover .bml-pms-icon-wrapper {
  transform: scale(1.1);
}

.bml-pms-icon {
  width: 100%;
  height: 100%;
}

/* CONTENT STYLING */
.bml-pms-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--bml-pms-title-color);
  line-height: 1.25;
  margin-bottom: 12px;
}

.bml-pms-card-text {
  font-size: 12px;
  color: var(--bml-pms-text-color);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 24px;
}

/* CALL TO ACTION LINK */
.bml-pms-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--bml-pms-accent);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
  margin-top: auto;
}

.bml-pms-arrow {
  transition: transform 0.25s ease;
}

.bml-pms-card:hover .bml-pms-link {
  color: #7bb500;
}

.bml-pms-card:hover .bml-pms-arrow {
  transform: translateX(4px);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .bml-pms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .bml-pms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .bml-pms-title {
    font-size: 24px;
  }

  .bml-pms-card {
    padding: 24px 14px 20px;
  }

  .bml-pms-card-title {
    font-size: 14px;
  }

  .bml-pms-card-text {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .bml-pms-grid {
    grid-template-columns: 1fr;
  }
}

/* SCOPED STYLES - PREVENT ANY CONFLICT WITH EXISTING CSS */
.bml-ecom-hero {
  --bml-bg: #fdfdfd;
  --bml-accent: #92cf00;
  --bml-accent-hover: #82b800;
  --bml-text-main: #111111;
  --bml-text-muted: #555555;
  --bml-border: #e2e8f0;

  background-color: var(--bml-bg);
  /* Dot background overlay pattern */
  background-image: radial-gradient(#e2e8f0 1.2px, transparent 1.2px);
  background-size: 20px 20px;
  padding: 60px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--bml-text-main);
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}

.bml-ecom-hero *,
.bml-ecom-hero *::before,
.bml-ecom-hero *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bml-ecom-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT AREA */
.bml-ecom-content {
  flex: 1;
  max-width: 580px;
}

.bml-ecom-logo-wrap {
  margin-bottom: 24px;
}

.bml-ecom-logo {
  height: 42px;
  width: auto;
}

.bml-ecom-badge {
  display: inline-block;
  background-color: #f1f8e9;
  color: #558b2f;
  border: 1px solid #dedebd;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.bml-ecom-title {
  font-size: 38px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--bml-text-main);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.bml-ecom-highlight {
  color: var(--bml-accent);
}

.bml-ecom-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bml-text-muted);
  margin-bottom: 28px;
}

/* CTA BUTTONS */
.bml-ecom-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.bml-ecom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.bml-ecom-btn-primary {
  background-color: var(--bml-accent);
  color: #000000;
  box-shadow: 0 4px 15px rgba(146, 207, 0, 0.3);
}

.bml-ecom-btn-primary:hover {
  background-color: var(--bml-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(146, 207, 0, 0.4);
}

.bml-ecom-btn-dark {
  background-color: #000000;
  color: #ffffff;
}

.bml-ecom-btn-dark:hover {
  background-color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.bml-ecom-btn-arrow {
  transition: transform 0.2s ease;
}

.bml-ecom-btn:hover .bml-ecom-btn-arrow {
  transform: translateX(4px);
}

/* TRUST GRID */
.bml-ecom-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.bml-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bml-trust-item strong {
  display: block;
  font-size: 11px;
  color: #111;
  line-height: 1.1;
}

.bml-trust-item span {
  font-size: 10px;
  color: #777;
}

/* RIGHT VISUAL / DASHBOARD ECOSYSTEM */
.bml-ecom-visual {
  flex: 1.1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 650px;
}

/* TOP & RIGHT ECOSYSTEM BARS */
.bml-eco-top-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.bml-eco-right-bar {
  position: absolute;
  right: -30px;
  top: 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bml-eco-node {
  background: #ffffff;
  border: 1px solid #eef2f6;
  padding: 6px 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  font-size: 11px;
  font-weight: 700;
  color: #333;
  transition: transform 0.25s ease;
}

.bml-eco-node:hover {
  transform: translateY(-3px);
  border-color: var(--bml-accent);
}

.bml-eco-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DASHBOARD MAIN CARD */
.bml-dashboard-card {
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden;
  min-height: 380px;
}

/* SIDEBAR */
.bml-dash-sidebar {
  width: 130px;
  background: #111214;
  color: #ffffff;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bml-dash-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

.bml-dash-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bml-dash-nav li {
  font-size: 11px;
  color: #8a8f99;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bml-dash-nav li.active, .bml-dash-nav li:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.bml-nav-badge {
  background: #333;
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 10px;
  color: #fff;
}

/* DASHBOARD BODY */
.bml-dash-body {
  flex: 1;
  padding: 16px;
  background: #fcfcfc;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bml-dash-topbar {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #888;
}

.bml-dash-search, .bml-dash-date {
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
}

/* KPIs */
.bml-dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.bml-kpi-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.bml-kpi-title { font-size: 9px; color: #777; }
.bml-kpi-val { font-size: 14px; font-weight: 800; color: #111; margin: 2px 0; }
.bml-kpi-trend { font-size: 9px; font-weight: 700; }
.bml-kpi-trend.green { color: #2e7d32; }

/* GRID LAYOUT FOR CHART & CHANNELS */
.bml-dash-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 10px;
}

.bml-chart-box, .bml-channels-box {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 10px;
}

.bml-box-title {
  font-size: 10px;
  font-weight: 700;
  color: #111;
  display: block;
  margin-bottom: 6px;
}

.bml-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bml-chart-legend {
  font-size: 8px;
  display: flex;
  gap: 8px;
}

.legend-rev .dot { display: inline-block; width: 6px; height: 6px; background: #8ec600; border-radius: 50%; }
.legend-prev .dot { display: inline-block; width: 6px; height: 6px; background: #ccc; border-radius: 50%; }

.bml-chart-svg-wrap {
  margin-top: 8px;
}

.bml-chart-svg {
  width: 100%;
  height: 80px;
}

.bml-chart-dates {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #aaa;
  margin-top: 4px;
}

/* CHANNELS */
.bml-channel-item {
  margin-bottom: 6px;
}

.bml-ch-label {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 600;
  margin-bottom: 2px;
}

.bml-ch-bar {
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}

.bml-ch-fill {
  height: 100%;
  background: var(--bml-accent);
}

.bml-camp-perf {
  margin-top: 10px;
  border-top: 1px solid #f5f5f5;
  padding-top: 6px;
}

.bml-camp-stats {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
}

.bml-camp-stats .c-title { color: #888; display: block; }
.bml-camp-stats .c-val { font-weight: 800; color: #111; display: block; }
.bml-camp-stats .c-trend { font-weight: 700; }
.bml-camp-stats .c-trend.green { color: #2e7d32; }

/* CONNECTED APPS BAR */
.bml-connected-apps {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.bml-app-pill {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 6px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.bml-status-dot {
  font-size: 8px;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 2px 6px;
  border-radius: 10px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .bml-ecom-container {
    flex-direction: column;
    text-align: center;
  }

  .bml-ecom-content {
    max-width: 100%;
  }

  .bml-ecom-actions {
    justify-content: center;
  }

  .bml-ecom-trust-grid {
    justify-content: center;
  }

  .bml-eco-right-bar {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
  }

  .bml-ecom-visual {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .bml-ecom-title {
    font-size: 26px;
  }

  .bml-ecom-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .bml-dashboard-card {
    flex-direction: column;
  }

  .bml-dash-sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .bml-dash-nav {
    display: none; /* Hide nav items on small mobile for space */
  }

  .bml-dash-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .bml-dash-grid {
    grid-template-columns: 1fr;
  }

  .bml-connected-apps {
    flex-wrap: wrap;
  }
}

/* FULL SCOPED ISOLATED STYLES - NO EXTERNAL CSS LEAK */
.bml-agency-section {
  --bml-lime: #88cb13;
  --bml-lime-hover: #78b50f;
  --bml-dark: #0a0b0d;
  --bml-gray-bg: #f8faf5;
  --bml-card-bg: #edf6db;
  --bml-text-dark: #121316;
  --bml-text-muted: #555c68;

  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
  line-height: 1.4;
  color: var(--bml-text-dark);
}

.bml-agency-section *,
.bml-agency-section *::before,
.bml-agency-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bml-green-text {
  color: var(--bml-lime);
}

/* TOP LIGHT BANNER */
.bml-top-banner {
  background-color: var(--bml-gray-bg);
  padding: 40px 24px;
  border-bottom: 1px solid #eef3e5;
}

.bml-top-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* VISUAL COLUMN (LEFT) */
.bml-visual-col {
  flex: 1.1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
}

.bml-bag-wrapper {
  position: absolute;
  left: -10px;
  top: -15px;
  z-index: 1;
}

.bml-shopify-bag {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(111, 160, 20, 0.25));
  transition: transform 0.3s ease;
}

.bml-visual-col:hover .bml-shopify-bag {
  transform: scale(1.04) rotate(-2deg);
}

.bml-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-left: 80px;
  z-index: 2;
	margin-bottom: 30px;
}

.bml-prod-card {
  background: #ffffff;
  border: 1px solid #eef2e6;
  border-radius: 5px;
  padding: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.bml-prod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  border-color: var(--bml-lime);
}

.bml-prod-img {
  font-size: 24px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfdf9;
  border-radius: 6px;
  margin-bottom: 6px;
}

.bml-prod-price {
  font-size: 11px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.bml-add-btn {
  background: #e8f5cb;
  color: #3b5a00;
  border: none;
  font-size: 8px;
  font-weight: 800;
  padding: 4px 6px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.bml-add-btn:hover {
  background: var(--bml-lime);
  color: #fff;
}

/* FLOATING CHIPS */
.bml-visual-chips {
  position: absolute;
  bottom: -20px;
  left: 30px;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  z-index: 3;
}

.bml-rev-chip {
  background: #ffffff;
  border: 1px solid #eef2e6;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.bml-rev-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.bml-rev-title {
  font-size: 9px;
  color: #777;
}

.bml-rev-badge {
  font-size: 9px;
  font-weight: 800;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 1px 5px;
  border-radius: 10px;
}

.bml-rev-val {
  font-size: 14px;
  font-weight: 900;
  color: #111;
  margin: 2px 0;
}

.bml-rev-graph {
  width: 100%;
  height: 12px;
}

.bml-tag-chip {
  background: #ffffff;
  border: 1px solid #eef2e6;
  border-radius: 20px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* CONTENT COLUMN (MIDDLE) */
.bml-content-col {
  flex: 1.2;
}

.bml-main-heading {
  font-size: 26px;
  font-weight: 900;
  color: var(--bml-text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.bml-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}

.bml-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #2c323b;
}

.bml-check-icon {
  width: 18px;
  height: 18px;
  background-color: var(--bml-lime);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

/* CALLOUT COLUMN (RIGHT) */
.bml-callout-col {
  flex: 0.9;
  max-width: 280px;
}

.bml-callout-card {
  background-color: var(--bml-card-bg);
  border-radius: 5px;
  padding: 20px 22px;
  border: 1px solid #deebc2;
}

.bml-callout-sub {
  font-size: 12px;
  color: #5d6d3d;
  margin-bottom: 12px;
  text-align: left;
}

.bml-callout-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.bml-callout-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #1a2208;
}

.bml-s-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.bml-callout-footer {
  font-size: 12px;
  font-weight: 700;
  color: #3b4d18;
  text-align: left;
}

/* BOTTOM DARK BANNER */
.bml-bottom-banner {
  background-color: var(--bml-dark);
  color: #ffffff;
  padding: 36px 24px;
}

.bml-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.bml-bottom-title-col {
  flex: 0.8;
  min-width: 240px;
}

.bml-bottom-title-col h3 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.4px;
}

/* 6 CARDS GRID */
.bml-p-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.bml-p-card {
  border: 1px solid #22262d;
  background: #0f1115;
  border-radius: 5px;
  padding: 16px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.bml-p-card:hover {
  border-color: var(--bml-lime);
  background: #15191f;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(136, 203, 19, 0.15);
}

.bml-p-icon {
  color: var(--bml-lime);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bml-p-icon svg {
  width: 100%;
  height: 100%;
}

.bml-p-card span {
  font-size: 10px;
  font-weight: 700;
  color: #e0e6ed;
  line-height: 1.2;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1100px) {
  .bml-top-container {
    flex-direction: column;
    align-items: stretch;
  }

  .bml-visual-col {
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .bml-callout-col {
    max-width: 100%;
  }

  .bml-bottom-container {
    flex-direction: column;
    align-items: stretch;
  }

  .bml-p-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .bml-main-heading {
    font-size: 20px;
  }

  .bml-checklist {
    grid-template-columns: 1fr;
  }

  .bml-products-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 60px;
  }

  .bml-p-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bml-bottom-title-col h3 {
    font-size: 18px;
    text-align: center;
  }

  .bml-visual-chips {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 16px;
    flex-wrap: wrap;
  }
}
/* FULL SCOPED ISOLATED STYLES - DOES NOT AFFECT EXISTING CSS */
.bml-gs-section {
  --bml-lime: #7eb326;
  --bml-lime-light: #f0f7e4;
  --bml-text-dark: #111111;
  --bml-text-muted: #666666;
  --bml-border-color: #e5ebd9;
  --bml-card-bg: #ffffff;
  --bml-bg-top: #ffffff;
  --bml-bg-bottom: #f8faf6;

  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--bml-text-dark);
  box-sizing: border-box;
  overflow: hidden;
  line-height: 1.4;
}

.bml-gs-section *,
.bml-gs-section *::before,
.bml-gs-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bml-gs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.bml-gs-green {
  color: var(--bml-lime);
}

/* TOP BLOCK */
.bml-gs-top-block {
  background-color: var(--bml-bg-top);
  padding: 48px 0 32px 0;
  border-bottom: 1px solid #f0f0f0;
}

.bml-gs-top-layout {
  display: flex;
  align-items: center;
  gap: 32px;
}

.bml-gs-left-content {
  flex: 0 0 280px;
}

.bml-gs-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--bml-text-dark);
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.bml-gs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bml-lime-light);
  color: #4a6f11;
  border: 1px solid #dcebbf;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 5px;
  margin-bottom: 16px;
}

.bml-gs-desc {
  font-size: 12px;
  color: var(--bml-text-muted);
  line-height: 1.5;
}

/* PROCESS TRACK (9 CARDS HORIZONTAL) */
.bml-gs-process-container {
  flex: 1;
  overflow-x: auto;
  padding: 10px 0 20px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--bml-lime) #f0f0f0;
}

.bml-gs-process-container::-webkit-scrollbar {
  height: 4px;
}
.bml-gs-process-container::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.bml-gs-process-container::-webkit-scrollbar-thumb {
  background: var(--bml-lime);
  border-radius: 4px;
}

.bml-gs-process-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  position: relative;
  min-width: 900px;
}

.bml-gs-step-card {
  flex: 1;
  background: var(--bml-card-bg);
  border: 1px solid var(--bml-border-color);
  border-radius: 5px;
  padding: 16px 8px 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  position: relative;
  transition: all 0.25s ease;
  min-height: 150px;
}

.bml-gs-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--bml-lime);
  box-shadow: 0 8px 20px rgba(126, 179, 38, 0.15);
}

/* Connecting dotted line between cards */
.bml-gs-step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  border-top: 2px dotted #b0c980;
  z-index: 2;
}

.bml-gs-icon-wrap {
  width: 38px;
  height: 38px;
  background: #f8faf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.bml-gs-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.bml-gs-step-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--bml-text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.bml-gs-step-num {
  font-size: 9px;
  font-weight: 800;
  color: #ffffff;
  background-color: var(--bml-lime);
  padding: 2px 8px;
  border-radius: 12px;
}

.bml-gs-process-footer {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--bml-text-muted);
  margin-top: 16px;
}

/* BOTTOM BLOCK */
.bml-gs-bottom-block {
  background-color: var(--bml-bg-bottom);
  padding: 48px 0 36px 0;
}

.bml-gs-bottom-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.bml-gs-bottom-left {
  flex: 0 0 240px;
}

.bml-gs-experts-right {
  flex: 1;
}

.bml-gs-cards-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.bml-gs-feature-card {
  background: var(--bml-card-bg);
  border: 1px solid #e2e8d8;
  border-radius: 5px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.25s ease;
  min-height: 140px;
  justify-content: flex-start;
}

.bml-gs-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--bml-lime);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.bml-gs-feat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bml-gs-feat-icon svg {
  width: 28px;
  height: 28px;
}

.bml-gs-feat-title {
  font-size: 10px;
  font-weight: 800;
  color: var(--bml-text-dark);
  line-height: 1.25;
}

.bml-gs-experts-footer {
  text-align: left;
  font-size: 11px;
  color: var(--bml-text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
  .bml-gs-top-layout,
  .bml-gs-bottom-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .bml-gs-left-content,
  .bml-gs-bottom-left {
    flex: auto;
    text-align: center;
    max-width: 100%;
  }

  .bml-gs-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .bml-gs-title {
    font-size: 22px;
  }

  .bml-gs-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bml-gs-step-card {
    min-width: 100px;
  }
}
/* FULL SCOPED ISOLATED STYLES - PREVENTS CSS LEAKS */
.bq-scale-section {
  --bq-lime: #a3e635;
  --bq-lime-glow: rgba(163, 230, 53, 0.4);
  --bq-dark-bg: #0b0c0e;
  --bq-dark-card: #121418;
  --bq-text-dark: #111827;
  --bq-text-muted: #9ca3af;
  
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--bq-dark-bg);
  color: #ffffff;
  line-height: 1.4;
}

.bq-scale-section *,
.bq-scale-section *::before,
.bq-scale-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bq-lime-text {
  color: var(--bq-lime);
}

/* TOP BANNER */
.bq-top-banner {
  padding: 50px 24px 60px;
  background: radial-gradient(circle at 70% 50%, #152207 0%, var(--bq-dark-bg) 70%);
}

.bq-top-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT TEXT COLUMN */
.bq-left-text-col {
  flex: 0 0 380px;
}

.bq-main-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.bq-main-desc {
  font-size: 13px;
  color: var(--bq-text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.bq-btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bq-lime);
  color: #0d1203;
  font-size: 12px;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 5px;
  text-decoration: none;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px var(--bq-lime-glow);
}

.bq-btn-lime:hover {
  background-color: #b8f547;
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(163, 230, 53, 0.6);
}

/* RADIAL DIAGRAM GRAPHIC */
.bq-diagram-col {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.bq-radial-wrapper {
  position: relative;
  width: 650px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bq-circle-outer {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(163, 230, 53, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(163, 230, 53, 0.1);
}

.bq-circle-mid {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 2px stroke var(--bq-lime);
  border: 2px dashed rgba(163, 230, 53, 0.5);
  border-radius: 50%;
  animation: bq-spin 35s linear infinite;
}

.bq-circle-inner {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(163, 230, 53, 0.4);
  border-radius: 50%;
}

@keyframes bq-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.bq-center-logo {
  position: absolute;
  width: 86px;
  height: 86px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  z-index: 5;
}

.bq-b {
  font-size: 36px;
  font-weight: 900;
  color: #111;
  letter-spacing: -2px;
}

.bq-q {
  font-size: 36px;
  font-weight: 900;
  color: var(--bq-lime);
  margin-left: -2px;
}

.bq-node-top {
  position: absolute;
  top: 18px;
}

.bq-dot {
  width: 10px;
  height: 10px;
  background-color: var(--bq-lime);
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 8px var(--bq-lime);
}

.bq-feature-list {
  list-style: none;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 4;
}

.bq-left-list {
  left: 0;
  text-align: right;
}

.bq-right-list {
  right: 0;
	align-items: end;
}

.bq-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #e5e7eb;
  transition: color 0.2s;
}

.bq-feature-list li:hover {
  color: var(--bq-lime);
}

.bq-node-point {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(163, 230, 53, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}

/* BOTTOM LIME BANNER */
.bq-bottom-banner {
  background-color: var(--bq-lime);
  color: var(--bq-text-dark);
  padding: 30px 24px;
  border-radius: 20px 20px 0 0;
}

.bq-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.bq-visual-col {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
}

.bq-growth-graphic {
  width: 200px;
  height: auto;
}

.bq-story-content {
  flex: 1;
}

.bq-story-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  color: #0e1702;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.bq-story-desc {
  font-size: 11px;
  color: #273809;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 600px;
}

.bq-partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bq-partner-card {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #111827;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.bq-p-icon {
  font-size: 14px;
}
.bq-p-icon.google { color: #4285F4; }
.bq-p-icon.meta { color: #0668E1; font-weight: bold; }
.bq-p-icon.ga4 { color: #E37400; }

.bq-story-actions {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bq-btn-black {
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}

.bq-btn-black:hover {
  background: #1a1a1a;
}

.bq-btn-outline-dark {
  background: transparent;
  color: #111827;
  border: 1.5px solid #111827;
  font-size: 11px;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
}

.bq-btn-outline-dark:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
  .bq-top-container {
    flex-direction: column;
    text-align: center;
  }

  .bq-left-text-col {
    flex: auto;
  }

  .bq-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .bq-visual-col {
    order: -1;
  }

  .bq-partners-grid {
    justify-content: center;
  }

  .bq-story-actions {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 700px) {
  .bq-radial-wrapper {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 16px;
  }

  .bq-circle-outer, .bq-circle-mid, .bq-circle-inner, .bq-center-logo, .bq-node-top {
    display: none; /* Simplifies graph into clean mobile stack */
  }

  .bq-feature-list {
    position: relative;
    left: auto;
    right: auto;
    text-align: left;
    width: 100%;
  }

  .bq-left-list, .bq-right-list {
    align-items: flex-start;
  }

  .bq-main-title {
    font-size: 28px;
  }

  .bq-story-title {
    font-size: 22px;
  }
}

/* Encapsulated Variables & Base Reset */
  .bm-faq-section {
    --bm-primary: #84cc16;        /* Vibrant performance green */
    --bm-primary-hover: #65a30d;
    --bm-dark: #0f172a;
    --bm-card-bg: #ffffff;
    --bm-bg-muted: #f8fafc;
    --bm-border: #e2e8f0;
    --bm-text: #334155;
    --bm-text-dark: #0f172a;
    --bm-text-muted: #64748b;
    --bm-radius: 12px;
    --bm-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --bm-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--bm-text);
    max-width: 1380px;
    margin: 30px auto;
    padding: 0 15px;
    box-sizing: border-box;
    background: #ffffff;
  }

  .bm-faq-section *,
  .bm-faq-section *::before,
  .bm-faq-section *::after {
    box-sizing: border-box;
  }

  /* Header Styles */
  .bm-faq-header {
    text-align: center;
    background: linear-gradient(180deg, #f7fee7 0%, #ffffff 100%);
    border: 1px solid #ecfccb;
    border-radius: 5px;
    padding: 35px 20px 25px 20px;
    margin-bottom: 25px;
  }

  .bm-faq-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
  }

  .bm-faq-logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--bm-dark);
    line-height: 1;
  }

  .bm-faq-sub-brand {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--bm-primary-hover);
  }

  .bm-faq-brand small {
    font-size: 0.7rem;
    color: var(--bm-text-muted);
    margin-top: 2px;
  }

  .bm-faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bm-text-dark);
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
  }

  .bm-faq-subtitle {
    font-size: 1rem;
    color: var(--bm-text-muted);
    max-width: 650px;
    margin: 0 auto 20px auto;
    line-height: 1.5;
  }

  .bm-faq-subtitle .bm-highlight {
    color: var(--bm-primary-hover);
    font-weight: 700;
    background: #ecfccb;
    padding: 2px 6px;
    border-radius: 4px;
  }

  /* Live Search Input */
  .bm-faq-search-wrapper {
    position: relative;
    max-width: 580px;
    margin: 0 auto 25px auto;
  }

  .bm-search-icon {
    position: absolute;
    left: 16px;
    top: 32%;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
    opacity: 0.6;
  }

  .bm-faq-search {
    width: 100%;
    padding: 14px 45px 14px 45px;
    font-size: 0.95rem;
    border: 2px solid var(--bm-border);
    border-radius: 5px;
    outline: none;
    background: #ffffff;
    transition: var(--bm-transition);
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  }

  .bm-faq-search:focus {
    border-color: var(--bm-primary);
    box-shadow: 0 0 0 4px rgba(132, 204, 22, 0.2);
  }

  .bm-search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--bm-text-muted);
    cursor: pointer;
    display: none;
  }

  /* Trust Badges Bar */
  .bm-faq-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--bm-border);
  }

  .bm-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid var(--bm-border);
    padding: 8px 14px;
    border-radius: 5px;
    text-align: left;
  }

  .bm-badge-icon {
    font-size: 1.1rem;
  }

  .bm-trust-badge strong {
    display: block;
    font-size: 0.8rem;
    color: var(--bm-text-dark);
  }

  .bm-trust-badge small {
    display: block;
    font-size: 0.7rem;
    color: var(--bm-text-muted);
  }

  /* Main Layout Grid */
  .bm-faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr 280px;
    gap: 20px;
    align-items: start;
  }

  /* Sidebar Card Elements */
  .bm-sidebar-card {
    background: var(--bm-card-bg);
    border: 1px solid var(--bm-border);
    border-radius: 5px;
    padding: 16px;
    box-shadow: var(--bm-shadow);
  }

  .bm-sidebar-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--bm-text-muted);
    text-transform: uppercase;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bm-bg-muted);
  }

  /* Left Category Menu */
  .bm-category-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .bm-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    padding: 9px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bm-text);
    cursor: pointer;
    transition: var(--bm-transition);
  }

  .bm-cat-item:hover {
    background: var(--bm-bg-muted);
    color: var(--bm-text-dark);
  }

  .bm-cat-item.active {
    background: #ecfccb;
    color: var(--bm-primary-hover);
    font-weight: 700;
  }

  .bm-cat-icon {
    font-size: 0.95rem;
  }

  .bm-support-card {
    margin-top: 15px;
    background: var(--bm-bg-muted);
    border: 1px dashed var(--bm-border);
    border-radius: 5px;
    padding: 18px;
    text-align: center;
  }

  .bm-support-icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }

  .bm-support-card h4 {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    color: var(--bm-text-dark);
  }

  .bm-support-card p {
    margin: 0 0 12px 0;
    font-size: 0.78rem;
    color: var(--bm-text-muted);
  }

  .bm-btn-dark {
    display: inline-block;
    background: var(--bm-dark);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--bm-transition);
    width: 100%;
  }

  .bm-btn-dark:hover {
    background: #1e293b;
  }

  /* Center Main Area & Accordion */
  .bm-faq-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 4px;
  }

  .bm-faq-counter {
    font-size: 0.85rem;
    color: var(--bm-text-muted);
  }

  .bm-faq-controls {
    display: flex;
    gap: 8px;
  }

  .bm-control-btn {
    background: none;
    border: 1px solid var(--bm-border);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bm-text-muted);
    cursor: pointer;
    transition: var(--bm-transition);
  }

  .bm-control-btn:hover {
    background: var(--bm-bg-muted);
    color: var(--bm-text-dark);
  }

  .bm-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* Accordion Item Styling */
  .bm-faq-item {
    background: var(--bm-card-bg);
    border: 1px solid var(--bm-border);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--bm-transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  }

  .bm-faq-item:hover {
    border-color: #cbd5e1;
  }

  .bm-faq-item.active {
    border-color: #bef264;
    box-shadow: var(--bm-shadow);
  }

  .bm-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: var(--bm-transition);
  }

  .bm-faq-item.active .bm-faq-question {
    background: #f7fee7;
  }

  .bm-q-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bm-text-dark);
    line-height: 1.4;
    padding-right: 15px;
  }

  .bm-toggle-icon {
    font-size: 1.1rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bm-bg-muted);
    color: var(--bm-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .bm-faq-item.active .bm-toggle-icon {
    background: var(--bm-primary);
    color: #ffffff;
  }

  .bm-faq-answer {
    display: none;
    padding: 18px 20px 20px 20px;
    border-top: 1px solid #ecfccb;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--bm-text);
  }

  .bm-faq-item.active .bm-faq-answer {
    display: block;
    animation: bmFadeIn 0.25s ease-in-out;
  }

  @keyframes bmFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .bm-faq-answer p {
    margin: 0 0 12px 0;
  }

  .bm-faq-answer p:last-child {
    margin-bottom: 0;
  }

  /* Item Interactive Chips */
  .bm-chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .bm-chips-grid span {
    background: var(--bm-bg-muted);
    border: 1px solid var(--bm-border);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bm-text-dark);
  }

  .bm-faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 15px;
  }

  .bm-tag {
    background: #ecfccb;
    color: var(--bm-primary-hover);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
  }

  /* Answer Feedback & Copy Footer */
  .bm-answer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--bm-border);
    font-size: 0.78rem;
    color: var(--bm-text-muted);
  }

  .bm-feedback {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .bm-btn-like,
  .bm-btn-dislike,
  .bm-btn-copy {
    background: var(--bm-bg-muted);
    border: 1px solid var(--bm-border);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--bm-transition);
  }

  .bm-btn-like:hover, .bm-btn-dislike:hover, .bm-btn-copy:hover {
    background: #e2e8f0;
  }

  .bm-ordered-list {
    margin: 8px 0 0 18px;
    padding: 0;
    line-height: 1.7;
  }

  /* Empty Search Fallback */
  .bm-faq-no-results {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: var(--bm-bg-muted);
    border-radius: var(--bm-radius);
    border: 1px dashed var(--bm-border);
  }

  .bm-no-res-icon {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .bm-faq-no-results h3 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    color: var(--bm-text-dark);
  }

  .bm-faq-no-results p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--bm-text-muted);
  }

  /* Stats Bar */
  .bm-faq-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: #f7fee7;
    border: 1px solid #ecfccb;
    border-radius: var(--bm-radius);
    padding: 16px;
    margin-top: 25px;
  }

  .bm-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .bm-stat-icon {
    font-size: 1.3rem;
  }

  .bm-stat-item strong {
    display: block;
    font-size: 1rem;
    color: var(--bm-text-dark);
  }

  .bm-stat-item small {
    display: block;
    font-size: 0.7rem;
    color: var(--bm-text-muted);
  }

  /* Right Sidebar */
  .bm-popular-card {
    background: var(--bm-card-bg);
    border: 1px solid var(--bm-border);
    border-radius: 5px;
    padding: 16px;
    box-shadow: var(--bm-shadow);
  }

  .bm-popular-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .bm-quick-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bm-text-dark);
    text-decoration: none;
    transition: var(--bm-transition);
    display: block;
    line-height: 1.35;
  }

  .bm-quick-link:hover {
    color: var(--bm-primary-hover);
  }

  .bm-cta-card {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    color: #ffffff;
    border-radius: 5px;
    padding: 22px 18px;
    margin-top: 15px;
    text-align: center;
    box-shadow: var(--bm-shadow);
  }

  .bm-cta-card h3 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    color: #ffffff;
  }

  .bm-cta-card p {
    margin: 0 0 16px 0;
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.4;
  }

  .bm-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ffffff;
    color: var(--bm-text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 5px;
    width: 100%;
    transition: var(--bm-transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .bm-btn-primary:hover {
    transform: translateY(-2px);
    background: #f8fafc;
  }

  .bm-response-time {
    margin-top: 12px;
    font-size: 0.7rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .bm-green-dot {
    color: #a3e635;
  }

  /* ================= RESPONSIVE LAYOUT BREAKPOINTS ================= */

  @media (max-width: 1100px) {
    .bm-faq-layout {
      grid-template-columns: 240px 1fr;
    }
    .bm-faq-sidebar-right {
      display: none; /* Hide right sidebar on medium tablet screens */
    }
    .bm-faq-stats-bar {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .bm-faq-layout {
      grid-template-columns: 1fr; /* Single column stack */
    }

    .bm-category-list {
      flex-direction: row;
      overflow-x: auto;
      white-space: nowrap;
      padding-bottom: 6px;
      -webkit-overflow-scrolling: touch;
    }

    .bm-cat-item {
      width: auto;
      padding: 6px 12px;
      background: var(--bm-bg-muted);
    }

    .bm-faq-title {
      font-size: 1.6rem;
    }

    .bm-chips-grid {
      grid-template-columns: 1fr;
    }

    .bm-faq-stats-bar {
      grid-template-columns: 1fr;
    }
  }

/* Fully scoped styles targeting #beeq-section-container to avoid CSS contamination */
  #beeq-section-container {
    --beeq-lime: #b6f800;
    --beeq-lime-text: #82b800;
    --beeq-dark: #121212;
    --beeq-card-border: #ececec;
    --beeq-text-main: #181818;
    --beeq-text-muted: #555555;
    
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background: #ffffff;
  }

  #beeq-section-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* 1. TOP METRICS BAR */
  #beeq-section-container .beeq-top-bar {
    background-color: var(--beeq-dark);
    border-radius: 5px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 45px;
  }

  #beeq-section-container .beeq-top-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
  }

  #beeq-section-container .beeq-top-icon {
    width: 28px;
    height: 28px;
    color: var(--beeq-lime);
    flex-shrink: 0;
  }

  /* 2. BRANDS CAROUSEL */
  #beeq-section-container .beeq-brands-container {
    text-align: center;
    margin-bottom: 50px;
  }

  #beeq-section-container .beeq-brands-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--beeq-text-main);
    margin-bottom: 25px;
    letter-spacing: -0.2px;
  }

  #beeq-section-container .beeq-brands-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  #beeq-section-container .beeq-arrow {
    background: none;
    border: none;
    font-size: 22px;
    font-weight: 400;
    color: #222;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.2s ease;
  }

  #beeq-section-container .beeq-arrow:hover {
    transform: scale(1.2);
  }

  #beeq-section-container .beeq-brands-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow-x: auto;
    gap: 20px;
    scrollbar-width: none;
  }

  #beeq-section-container .beeq-brands-list::-webkit-scrollbar {
    display: none;
  }

  #beeq-section-container .beeq-brand-item {
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.2s;
  }

  #beeq-section-container .beeq-brand-item:hover {
    opacity: 1;
  }

  #beeq-section-container .brand-text {
    font-size: 16px;
    font-weight: 800;
    color: #2b2b2b;
    letter-spacing: -0.5px;
  }

  #beeq-section-container .brand-text.beardo {
    font-family: 'Impact', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
  }

  #beeq-section-container .brand-text.plum {
    font-weight: 900;
    font-size: 19px;
  }

  #beeq-section-container .brand-text.sugar {
    letter-spacing: 2px;
  }

  /* 3. WHY CHOOSE US CARDS */
  #beeq-section-container .beeq-why-container {
    text-align: center;
  }

  #beeq-section-container .beeq-why-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--beeq-text-main);
    margin-bottom: 30px;
  }

  #beeq-section-container .beeq-highlight {
    color: var(--beeq-lime-text);
  }

  #beeq-section-container .beeq-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }

  #beeq-section-container .beeq-card {
    border: 1px solid var(--beeq-card-border);
    border-radius: 5px;
    padding: 24px 12px;
    background: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.25s ease;
  }

  #beeq-section-container .beeq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    border-color: #dcdcdc;
  }

  #beeq-section-container .beeq-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: var(--beeq-lime-text);
  }

  #beeq-section-container .beeq-card-icon svg {
    width: 100%;
    height: 100%;
  }

  #beeq-section-container .beeq-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--beeq-text-main);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  #beeq-section-container .beeq-card p {
    font-size: 11px;
    color: var(--beeq-text-muted);
    line-height: 1.45;
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 1024px) {
    #beeq-section-container .beeq-cards-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    #beeq-section-container .beeq-top-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 640px) {
    #beeq-section-container .beeq-top-bar {
      grid-template-columns: repeat(2, 1fr);
    }
    #beeq-section-container .beeq-cards-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 420px) {
    #beeq-section-container .beeq-cards-grid {
      grid-template-columns: 1fr;
    }
    #beeq-section-container .beeq-top-bar {
      grid-template-columns: 1fr;
    }
  }

/* --- SCOPED CSS FOR PERFORMANCE SERVICES SECTION --- */
  #perf-services-container {
    --perf-lime: #a3dc00;
    --perf-dark: #121212;
    --perf-subtext: #555555;
    --perf-border: #e6e6e6;
    --perf-bg: #f8f9fa;
    
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 40px 30px;
    
    border-radius: 16px;
    box-sizing: border-box;
    color: var(--perf-dark);
  }

  #perf-services-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* Header Styles */
  #perf-services-container .perf-header {
    text-align: center;
    margin-bottom: 35px;
  }

  #perf-services-container .perf-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--perf-dark);
    letter-spacing: -0.3px;
    margin-bottom: 8px;
  }

  #perf-services-container .perf-subtitle {
    font-size: 14px;
    color: var(--perf-subtext);
    font-weight: 500;
  }

  /* Grid Layout (5 columns desktop) */
  #perf-services-container .perf-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  /* Card Styles */
  #perf-services-container .perf-card {
    background: #ffffff;
    border: 1px solid var(--perf-border);
    border-radius: 5px;
    padding: 28px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
  }

  /* Hover Effects */
  #perf-services-container .perf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: #d8d8d8;
  }

  /* Icon Containers */
  #perf-services-container .perf-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #perf-services-container .perf-icon.lime-icon {
    color: var(--perf-lime);
  }

  /* Typography */
  #perf-services-container .perf-card h3 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--perf-dark);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  #perf-services-container .perf-card p {
    font-size: 11.5px;
    color: var(--perf-subtext);
    line-height: 1.45;
  }

  /* --- RESPONSIVE BREAKPOINTS --- */
  
  /* Laptop / Medium Desktop (4 Columns) */
  @media (max-width: 1024px) {
    #perf-services-container .perf-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
  }

  /* Tablet (2 Columns) */
  @media (max-width: 768px) {
    #perf-services-container {
      padding: 30px 20px;
    }
    
    #perf-services-container .perf-title {
      font-size: 20px;
    }
    
    #perf-services-container .perf-subtitle {
      font-size: 13px;
    }

    #perf-services-container .perf-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    #perf-services-container .perf-card {
      padding: 22px 14px;
    }
  }

  /* Mobile (1 Column) */
  @media (max-width: 480px) {
    #perf-services-container .perf-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    #perf-services-container .perf-title {
      font-size: 18px;
    }
  }

/* --- SCOPED CSS: #platforms-process-container --- */
  #platforms-process-container {
    --lime-color: #a4e000;
    --dark-bg: #141414;
    --card-border: #efefef;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 30px 20px;
    box-sizing: border-box;
    background-color: #ffffff;
    color: var(--text-dark);
  }

  #platforms-process-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  #platforms-process-container .section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
  }

  /* 1. PLATFORMS SECTION */
  #platforms-process-container .platforms-section {
    margin-bottom: 35px;
  }

  #platforms-process-container .platforms-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 0;
  }

  #platforms-process-container .platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  #platforms-process-container .platform-item:hover {
    transform: translateY(-2px);
  }

  #platforms-process-container .shopify-icon { width: 32px; height: 32px; }
  #platforms-process-container .magento-icon { width: 28px; height: 28px; }
  #platforms-process-container .custom-icon { width: 32px; height: 32px; color: #111; }

  #platforms-process-container .woo-badge {
    background-color: #96588a;
    color: white;
    font-size: 13px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
  }

  #platforms-process-container .platform-text {
    font-size: 16px;
    font-weight: 800;
    color: #111;
  }

  #platforms-process-container .shopify-text { font-size: 20px; letter-spacing: -0.5px; }
  #platforms-process-container .woo-text { font-size: 15px; letter-spacing: 0.5px; }
  #platforms-process-container .magento-text { font-size: 18px; font-weight: 700; }
  
  #platforms-process-container .platform-text.flex-col {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 700;
  }

  /* 2. DUAL CARDS SECTION */
  #platforms-process-container .dual-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  #platforms-process-container .info-card {
    background: #fcfcfc;
    border: 1px solid var(--card-border);
    border-radius: 5px;
    padding: 24px;
    position: relative;
    overflow: hidden;
  }

  #platforms-process-container .card-title {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
  }

  #platforms-process-container .card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  #platforms-process-container .check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 0px;
    z-index: 2;
    width: 75%;
  }

  #platforms-process-container .check-list li {
    font-size: 11.5px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  #platforms-process-container .check-icon {
    color: var(--lime-color);
    font-size: 12px;
    font-weight: 900;
  }

  #platforms-process-container .card-image-wrapper {
    position: absolute;
    right: -10px;
    bottom: -20px;
    width: 170px;
    height: 170px;
    pointer-events: none;
    opacity: 0.9;
    z-index: 1;
  }

  #platforms-process-container .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.08));
  }

  /* 3. PROCESS TIMELINE */
  #platforms-process-container .process-section {
    margin-bottom: 40px;
  }

  #platforms-process-container .process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    position: relative;
    padding-top: 10px;
  }

  /* Connecting dotted line */
  #platforms-process-container .process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dotted #ccc;
    z-index: 1;
  }

  #platforms-process-container .process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0 5px;
  }

  #platforms-process-container .step-badge {
    width: 36px;
    height: 36px;
    background-color: var(--lime-color);
    color: #000;
    font-weight: 800;
    font-size: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    box-shadow: 0 0 0 4px #ffffff;
  }

  #platforms-process-container .process-step h4 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
  }

  #platforms-process-container .process-step p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* 4. RESULTS BAR */
  #platforms-process-container .results-bar {
    background-color: var(--dark-bg);
    border-radius: 5px;
    padding: 25px 20px;
    color: white;
    text-align: center;
  }

  #platforms-process-container .results-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
  }

  #platforms-process-container .results-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }

  #platforms-process-container .result-item {
    position: relative;
    padding: 0 10px;
  }

  #platforms-process-container .result-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    border-right: 1px dashed rgba(255, 255, 255, 0.4);
  }

  #platforms-process-container .result-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--lime-color);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }

  #platforms-process-container .result-label {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    color: #e0e0e0;
  }

  /* --- RESPONSIVE BREAKPOINTS --- */
  @media (max-width: 992px) {
    #platforms-process-container .dual-cards-grid {
      grid-template-columns: 1fr;
    }

    #platforms-process-container .process-timeline {
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    #platforms-process-container .process-timeline::before {
      display: none;
    }

    #platforms-process-container .results-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    #platforms-process-container .result-item:not(:last-child)::after {
      display: none;
    }
  }

  @media (max-width: 600px) {
    #platforms-process-container .check-list {
      grid-template-columns: 1fr;
    }

    #platforms-process-container .card-image-wrapper {
      opacity: 0.2;
    }

    #platforms-process-container .process-timeline {
      grid-template-columns: 1fr;
    }

    #platforms-process-container .results-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    #platforms-process-container .platforms-list {
      gap: 15px;
    }
  }
/* ==========================================================================
   BEEQ MEDIA LABS - FAQ COMPONENT (SCOPED CSS WITH LOAD MORE)
   ========================================================================== */

.beeq-faq-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0f1111;
  background-color: #f7f8f8;
  padding: 24px 16px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}

.beeq-faq-wrapper *, 
.beeq-faq-wrapper *::before, 
.beeq-faq-wrapper *::after {
  box-sizing: inherit;
}

/* --- Header Section --- */
.beeq-faq-header {
  background: #232f3e;
  color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.beeq-faq-header h2 {
  margin: 0 0 8px 0;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

.beeq-faq-header p {
  margin: 0 0 20px 0;
  color: #cccccc;
  font-size: 14px;
}

/* Search Bar */
.beeq-search-box {
  position: relative;
  width: 45%;
}

.beeq-search-input {
  width: 100%;
  padding: 12px 45px 12px 16px;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #ffffff;
}

.beeq-search-input:focus {
  border-color: #e77600;
  box-shadow: 0 0 0 3px rgba(228, 121, 17, 0.3);
}

.beeq-search-icon {
  position: absolute;
  right: 14px;
  top: 30%;
  transform: translateY(-50%);
  color: #555;
  pointer-events: none;
}

/* --- Main Layout Grid --- */
.beeq-faq-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

/* --- Left Category Menu --- */
.beeq-sidebar {
  background: #ffffff;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  padding: 16px 0;
  position: sticky;
  top: 20px;
}

.beeq-sidebar-title {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  color: #565959;
  padding: 0 16px 12px 16px;
  border-bottom: 1px solid #e7e7e7;
  letter-spacing: 0.5px;
}

.beeq-category-list {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 0;
}

.beeq-category-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  color: #0f1111;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: all 0.15s ease-in-out;
}

.beeq-category-btn:hover {
  background-color: #f0f2f2;
  color: #007185;
}

.beeq-category-btn.active {
  background-color: #f7fafa;
  border-left-color: #e77600;
  font-weight: 700;
  color: #007185;
}

.beeq-category-count {
  font-size: 12px;
  background: #e3e6e6;
  color: #565959;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.beeq-category-btn.active .beeq-category-count {
  background: #fbd8b4;
  color: #8e4400;
}

/* --- Right Content Area --- */
.beeq-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d5d9d9;
}

.beeq-active-cat-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.beeq-results-info {
  font-size: 13px;
  color: #565959;
}

/* Accordion Item */
.beeq-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.beeq-faq-item {
  background: #ffffff;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.beeq-faq-item:hover {
  border-color: #a6a6a6;
}

.beeq-faq-question {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #0f1111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.beeq-faq-question:hover {
  color: #007185;
}

.beeq-icon-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  fill: #565959;
}

.beeq-faq-item.open .beeq-icon-chevron {
  transform: rotate(180deg);
  fill: #e77600;
}

.beeq-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: #fafafa;
  border-top: 1px solid transparent;
}

.beeq-faq-item.open .beeq-faq-answer {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
  border-top-color: #e7e7e7;
}

.beeq-faq-answer-inner {
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

/* --- Load More Section --- */
.beeq-load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.beeq-load-more-btn {
  background: #ffd814;
  border: 1px solid #fcd200;
  border-radius: 5px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #0f1111;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.beeq-load-more-btn:hover {
  background: #f7ca00;
  border-color: #f2c200;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.beeq-load-more-btn:active {
  background: #f0b800;
}

/* No Results State */
.beeq-no-results {
  display: none;
  background: #ffffff;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  color: #565959;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
  .beeq-faq-container {
    grid-template-columns: 1fr;
  }

  .beeq-sidebar {
    position: static;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
  }

  .beeq-sidebar-title {
    display: none;
  }

  .beeq-category-list {
    display: flex;
    gap: 8px;
    margin: 0;
  }

  .beeq-category-btn {
    border-left: none;
    border: 1px solid #d5d9d9;
    border-radius: 5px;
    padding: 6px 14px;
    white-space: nowrap;
  }

  .beeq-category-btn.active {
    background-color: #232f3e;
    color: #ffffff;
    border-color: #232f3e;
  }

  .beeq-category-btn.active .beeq-category-count {
    background: #e77600;
    color: #ffffff;
  }
}