/*
Theme Name: BlueBricks Technologies
Theme URI: https://www.bluebricks.solutions
Author: BlueBricks Technologies
Author URI: https://www.bluebricks.solutions
Description: BlueBricks - Blue Primary Edition. Blue as dominant brand, green as accent.
Version: 2.2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: www.bluebricks.solutions
Tags: cybersecurity, technology, business, compliance, one-page
*/

/* ============================================================
   BLUEBRICKS THEME - COMPLETE STYLESHEET
   Color Palette: Deep Navy #0a1f3d, Electric Blue #1044b4,
   Fresh Green #2cb424, White #ffffff, Light Mint #f4fff2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bb-deep: #020f1a;
  --bb-dark: #0a1f3d;
  --bb-primary: #13459e;
  --bb-violet: #1044b4;
  --bb-bright: #2563eb;
  --bb-accent: #60a5fa;
  --bb-electric: #1d4ed8;
  --bb-white: #ffffff;
  --bb-off: #eff6ff;
  --bb-green: #2cb424;
  --bb-blue: #1044b4;
  --bb-light-blue: #9ab6e8;
  --bb-logo-green: #2cb424; /* green accent only */
  --bb-lavender: #eff6ff;
  --bb-muted: #2b2b2b;
  --bb-text: #0f2340;
  --bb-border: #dbeafe;
  --bb-card-bg: #ffffff;
  --bb-black: #000000;
  --bb-red: #dc2626;
  --bb-shadow: 0 4px 24px rgba(16, 68, 180, 0.10);
  --bb-shadow-lg: 0 16px 56px rgba(16, 68, 180, 0.18);
  --font-display: 'Lato', sans-serif;
  --font-body: 'Lato', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Lato', sans-serif !important;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bb-text);
  background: var(--bb-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-family: 'Lato', sans-serif !important;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.bb-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--transition);
}

.bb-nav.scrolled {
  box-shadow: 0 2px 24px rgba(16, 68, 180, 0.12);
}

.bb-nav .bb-container {
  max-width: 95% !important;
}

.bb-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
@media (max-width: 768px) {
  .bb-nav-inner { justify-content: space-between !important; }
}

.bb-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.bb-logo-card {
  background: #ffffff;
  margin: 5px 0;
  right: auto;
  border-radius: 10px;
  padding: 1px 6px;
  height: 54px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12); */
}
.bb-logo-card-footer {
  background: #ffffff;
  margin: 5px 0;
  right: auto;
  border-radius: 10px;
  padding: 4px 6px;
  height: 54px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .bb-logo-card { margin: 5px 0 !important; }
}

.bb-logo-card img {
  max-height: 45px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0; 
}

.bb-logo-card-footer img {
  max-height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Fallback if image fails */
.bb-logo-fallback {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1044b4;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.bb-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1044b4;
  letter-spacing: -0.02em;
  white-space: nowrap;
  justify-content: center;
  /* make text uppercase */
  /* text-transform: uppercase; */
}
.bb-logo-text-footer {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1044b4;
  letter-spacing: -0.02em;
  white-space: nowrap;
  justify-content: center;
  /* make text uppercase */
  /* text-transform: uppercase; */
}

.bb-i {
  position: relative;
  color: #1044b4;
}

/* Hide original dot by shifting text */
.bb-i {
  text-shadow: 0 0 0 #1044b4;
}

/* Add green dot */
.bb-i::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 53%;
  transform: translateX(-50%);
  width: 0.21em;
  height: 0.21em;
  background: var(--bb-logo-green);
  border-radius: 50%;
}

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

.bb-nav-item {
  position: relative;
}

.bb-nav-links a,
.bb-nav-item > a {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bb-text);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
}

.bb-nav-links a:hover,
.bb-nav-item > a:hover,
.bb-nav-item:hover > a {
  color: var(--bb-violet);
  background: rgba(16, 68, 180, 0.06);
}

/* Chevron rotation on hover */
.bb-nav-chevron {
  transition: transform var(--transition);
}
.bb-has-mega:hover .bb-nav-chevron {
  transform: rotate(180deg);
}

/* ---- MEGA NAV ---- */
/* hover bridge so menu does not disappear while moving cursor down */
.bb-nav-item.bb-has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100vw - 40px));
  height: 28px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 10000;
}

.bb-nav-item.bb-has-mega:hover::after,
.bb-nav-item.bb-has-mega:focus-within::after {
  opacity: 1;
  pointer-events: auto;
}

.bb-mega-panel {
  position: fixed;
  top: 68px;
  right: 0%;
  transform: translateX(-5%);
  width: auto;
  max-width: calc(100vw - 40px);

  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.985), rgba(239,246,255,0.985));
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;

  z-index: 10001;
  overflow: hidden;
}
.bb-mega-panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
  background: transparent;
}
.bb-mega-panel--security {
  right: 15%;
  transform: translateX(-20%);
}
/* keep menu open while parent OR panel is hovered */
.bb-has-mega:hover > .bb-mega-panel,
.bb-has-mega:focus-within > .bb-mega-panel,
.bb-mega-panel:hover,
.bb-mega-panel:focus-within {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bb-mega-strip {
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  border: 1px solid rgba(16, 68, 180, 0.08);
  border-radius: 20px;
  padding: 16px 18px;
  margin-bottom: 18px;
}

.bb-mega-strip-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bb-violet);
  margin-bottom: 4px;
}

.bb-mega-strip-sub {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #526277;
}

/* SINGLE ROW ALWAYS */
.bb-mega-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
  width: 100%;
}

.bb-mega-grid--products {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.bb-mega-grid--links .bb-mega-card {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}

.bb-mega-grid--quicklinks {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.bb-mega-panel--sm {
  width: 260px;
}
.bb-mega-panel--quicklinks {
  width: min(1160px, calc(100vw - 40px));  
}

.bb-mega-grid--quicklinks .bb-mega-card {
  padding: 14px 10px;
  min-height: 170px;
}

.bb-mega-grid--quicklinks .bb-mega-card-title {
  font-size: 0.88rem;
}

.bb-mega-grid--quicklinks .bb-mega-card-desc {
  font-size: 0.78rem;
  line-height: 1.4;
}

.bb-mega-panel--products {
  width: min(1160px, calc(100vw - 40px));
}

.bb-mega-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 185px;
  padding: 18px 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.bb-mega-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #1044b4, #2cb424);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.bb-mega-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.10);
  border-color: rgba(16, 68, 180, 0.14);
}

.bb-mega-card:hover::before {
  opacity: 1;
}

.bb-mega-card--compact {
  min-height: 160px;
}

.bb-mega-card--cta {
  background: linear-gradient(160deg, #f0fff2 0%, #ffffff 100%);
  border-color: rgba(44, 180, 36, 0.16);
}

.bb-mega-card--cta {
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.bb-mega-card-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 9px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2cb424 0%, #22a41b 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.bb-mega-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
  flex-shrink: 0;
  color: var(--bb-blue);
}

.bb-mega-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 8px;
  word-break: break-word;
}

.bb-mega-card-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--bb-black);
  word-break: break-word;
}

.bb-nav-links a:hover,
.bb-nav-item > a:hover,
.bb-nav-item:hover > a {
  color: var(--bb-violet);
  background: rgba(16, 68, 180, 0.06);
}

/* slightly tighter on medium-large screens */
@media (max-width: 1160px) {
  .bb-mega-panel--products,
  .bb-mega-panel--quicklinks {
    width: min(1000px, calc(100vw - 32px));
  }

  .bb-nav-item.bb-has-mega::after {
    width: min(1000px, calc(100vw - 32px));
  }

  .bb-mega-grid--products,
  .bb-mega-grid--quicklinks {
    gap: 14px;
  }

  .bb-mega-card {
    padding: 16px 12px;
    border-radius: 18px;
  }

  .bb-mega-card-title {
    font-size: 0.94rem;
  }

  .bb-mega-card-desc {
    font-size: 0.81rem;
    line-height: 1.42;
  }

  .bb-mega-card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .bb-mega-card-cta-btn {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
}

/* shrink card content more, but still keep one row */
@media (max-width: 1000px) {
  .bb-container {
    padding: 0 28px;
  }

  .bb-mega-panel {
    width: min(90vw, calc(100vw - 24px));
    padding: 16px;
  }

  .bb-mega-panel--products {
    width: min(90vw, calc(100vw - 24px));
  }

  .bb-mega-panel--quicklinks {
    width: min(90vw, calc(100vw - 24px));
  }
  .bb-mega-panel--resources {
    width: min(90vw, calc(100vw - 24px)) !important;
  }

  .bb-nav-item.bb-has-mega::after {
    width: min(90vw, calc(100vw - 24px));
  }

  .bb-mega-grid--products,
  .bb-mega-grid--quicklinks {
    gap: 12px;
  }

  .bb-mega-card {
    min-height: 150px;
    padding: 14px 10px;
    border-radius: 16px;
  }

  .bb-mega-card-title {
    font-size: 0.86rem;
    line-height: 1.18;
    margin-bottom: 6px;
  }

  .bb-mega-card-desc {
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .bb-mega-card-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .bb-mega-card-cta-btn {
    padding: 7px 10px;
    font-size: 0.72rem;
  }
}

@media (max-width: 960px) {
  /* .bb-mega-panel {
    display: none !important;
  }

  .bb-nav-item.bb-has-mega::after {
    display: none !important;
  }

  .bb-nav-chevron {
    display: none;
  } */
    .bb-nav-links a {
  font-size: 1rem;
}
}

@media (max-width: 850px) {
  .bb-nav-links {
    display: none;
  } }
@media (max-width: 768px) {
  .bb-nav-links {
    display: none;
  }

  .bb-nav-cta {
    display: none;
  }

  .bb-hamburger {
    display: flex;
  }

  .bb-mobile-menu {
    display: flex;
  }

  .bb-container {
    padding: 0 20px;
  }
}
.bb-btn-sm {
  padding: 4px 12px;
  font-size: 0.8rem;
}

.bb-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-hamburger {
  display: none;
}

.bb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.bb-btn-primary {
  background: linear-gradient(135deg, #1044b4, #2563eb);
  color: white;
  box-shadow: 0 4px 14px rgba(16, 68, 180, 0.35);
}

.bb-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 68, 180, 0.45);
}

.bb-btn-roi {
  background: linear-gradient(135deg, #1044b4, #2563eb);
  color: white !important;
  box-shadow: 0 4px 14px rgba(16, 68, 180, 0.35);
  border: none !important;
}

.bb-btn-roi:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 68, 180, 0.45);
  filter: brightness(1.1);
}

.bb-btn-outline {
  background: transparent;
  color: var(--bb-violet);
  border: 1.5px solid var(--bb-accent);
}

.bb-btn-outline:hover {
  background: var(--bb-lavender);
  border-color: var(--bb-violet);
}

.bb-btn-ghost {
  background: transparent;
  color: var(--bb-text);
  font-weight: 500;
}

.bb-btn-ghost:hover {
  color: var(--bb-violet);
}

.bb-btn-large {
  padding: 14px 32px;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
}

@media (max-width: 850px) {  /* adjust breakpoint as needed */
    .bb-hamburger {
        display: inline-block;
        cursor: pointer;
        width: 30px;
        height: 24px;
        position: relative;
        border: none;
        background: none;
        z-index: 1001;
    }

    .bb-hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #fff; /* or primary color */
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .bb-hamburger span:nth-child(1) { top: 0; }
    .bb-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .bb-hamburger span:nth-child(3) { bottom: 0; }

    /* Active / Open state */
    .bb-hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
    }
    .bb-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .bb-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 50%;
    }
}

.bb-mobile-group {
  border-bottom: 1px solid #eee;
}

.bb-mobile-parent {
  width: 100%;
  padding: 14px 0 ;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid var(--bb-border);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bb-dark);
}

.bb-mobile-submenu {
  display: none;
  padding-left: 10px;
}

.bb-mobile-group.active .bb-mobile-submenu {
  display: block;
}

.bb-mobile-link {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
}

.bb-mobile-chevron {
  transition: 0.3s;
}

.bb-mobile-group.active .bb-mobile-chevron {
  transform: rotate(45deg);
}

.bb-mobile-cta {
  margin-top: 10px;
  font-weight: 600;
  color: white !important;
  background: #1044b4;
  text-align: center;
  border-radius: 8px;
}

/* ============================================================
   TRUST BAR (certifications top strip)
   ============================================================ */
.bb-trust-bar {
  background: var(--bb-lavender);
  padding: 8px 0;
  overflow: hidden;
}

.bb-trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bb-cert-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bb-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bb-cert-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #1044b4;
  border-radius: 50%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.bb-hero {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--bb-off) 0%, var(--bb-lavender) 60%, white 100%);
  position: relative;
  overflow: hidden;
}

.bb-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);

  background-size: 60px 60px;

  pointer-events: none;
  z-index: 0;
}

.bb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.bb-hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.bb-badge {
  background: white;
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bb-violet);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bb-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0em;
  color: var(--bb-dark);
  margin-bottom: 10px;
}

.bb-hero-headline .accent {
  color: var(--bb-violet);
  position: relative;
}

.bb-hero-headline .outline-text {
  /* -webkit-text-stroke: 2px var(--bb-violet); */
  /* color: transparent; */
  color: var(--bb-green);
}

.bb-hero-sub {
  font-size: 1.25rem;
  color: var(--bb-black);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 400;
}

.bb-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.bb-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.bb-stat {
  display: flex;
  flex-direction: column;
}

.bb-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--bb-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.bb-stat-label {
  font-size: 0.78rem;
  color: var(--bb-black);
  font-weight: 500;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Hero Illustration */
.bb-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 480px;
  border-radius: 28px; /* smooth rounded */
  overflow: hidden;

  background: linear-gradient(135deg, #f8fbff, #eef4ff);
  box-shadow: 
    0 20px 60px rgba(16, 68, 180, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.bb-orbit {
  position: relative;
  width: 300px;
  height: 300px;
}

.bb-orbit-ring {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(16, 68, 180, 0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.bb-orbit-ring-2 {
  position: absolute;
  inset: -40px;
  border: 1.5px dashed rgba(16, 68, 180, 0.1);
  border-radius: 50%;
  animation: spin 30s linear infinite reverse;
}

.bb-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0a1f3d, #1044b4);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 16px 48px rgba(16, 68, 180, 0.4);
  z-index: 2;
}

.bb-orbit-center-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

.bb-orbit-node {
  position: absolute;
  width: 52px;
  height: 52px;
  background: white;
  border: 2px solid var(--bb-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--bb-shadow);
  transition: transform var(--transition);
}

.bb-orbit-node:hover {
  transform: scale(1.1);
}

.bb-orbit-node:nth-child(1) {
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.bb-orbit-node:nth-child(2) {
  top: 50%;
  right: -26px;
  transform: translateY(-50%);
}

.bb-orbit-node:nth-child(3) {
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.bb-orbit-node:nth-child(4) {
  top: 50%;
  left: -26px;
  transform: translateY(-50%);
}

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

/* ============================================================
   METRICS BAR
   ============================================================ */
.bb-metrics-bar {
  background: var(--bb-dark);
  padding: 32px 0;
}

.bb-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  text-align: center;
}

.bb-metric-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.bb-metric-item:last-child {
  border-right: none;
}

.bb-metric-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.bb-metric-num span {
  color: white !important;
}

.bb-metric-label {
  font-size: 0.8rem;
  color: white;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   CERTIFICATIONS STRIP
   ============================================================ */
.bb-certs-strip {
  background: var(--bb-primary);
  padding: 30px 0;
  overflow: hidden;
}

.bb-certs-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
}

.bb-cert-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bb-cert-item span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.bb-products {
  padding: 30px 0;
  background: white;
}

.bb-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bb-violet);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bb-section-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--bb-violet);
  border-radius: 2px;
}

.bb-section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--bb-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.bb-section-heading.enterprise {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--bb-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}

.bb-section-heading .highlight {
  color: var(--bb-violet);
  position: relative;
}

.bb-section-sub {
  font-size: 1.25rem;
  color: var(--bb-black);
  max-width: 'auto';
  line-height: 1.7;
  font-weight: 400;
  margin: 0 auto;
}

.bb-products-header {
  margin-bottom: 60px;
  text-align: center;
}
.bb-products-header .bb-section-sub{
  max-width: 650px;
  margin: 0 auto;
}

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

.bb-product-card {
  background: var(--bb-card-bg);
  border: 1px solid var(--bb-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.bb-product-logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: transparent; /* or keep light bg if you want */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.bb-product-logo.engage {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent; /* or keep light bg if you want */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.bb-product-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.bb-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bb-primary);
}

.bb-product-card:hover {
  border-color: var(--bb-accent);
  box-shadow: var(--bb-shadow-lg);
  transform: translateY(-4px);
}

.bb-product-card:hover::before {
  opacity: 0 !important; /* hides the blue top bar */
}



.bb-product-no {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bb-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bb-product-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.icon-bg-1 {
  background: #ede9fe;
}

.icon-bg-2 {
  background: #dbeafe;
}

.icon-bg-3 {
  background: #dcfce7;
}

.icon-bg-4 {
  background: #fef3c7;
}

.icon-bg-5 {
  background: #fce7f3;
}

.icon-bg-6 {
  background: #e0f2fe;
}

.bb-product-category {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bb-muted);
  margin-bottom: 6px;
}

.bb-product-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bb-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.bb-product-desc {
  font-size: 1.25rem;
  color: var(--bb-black);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 400;
}

.bb-product-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.bb-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bb-lavender);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bb-violet);
  letter-spacing: 0.02em;
}

.bb-product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bb-violet);
  transition: gap var(--transition);
}

.bb-product-link:hover {
  gap: 10px;
}

/* ============================================================
   CERTIFICATIONS SECTION
   ============================================================ */
.bb-certs-section {
  padding: 30px 0;
  background: linear-gradient(160deg, var(--bb-lavender) 0%, white 60%);
}

.bb-certs-layout {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; */
  align-items: center;
  text-align: center;
}
.bb-certs-layout .bb-section-heading {
margin: 0 auto;
max-width: 550px;
margin-bottom:30px;
}
.bb-certs-layout .bb-section-sub {
margin: 0 auto;
max-width: 700px;
margin-bottom:30px;
}

.bb-certs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.bb-cert-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: white;
  border: 1px solid var(--bb-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: all var(--transition);
}

.bb-cert-card:hover {
  border-color: var(--bb-accent);
  box-shadow: var(--bb-shadow);
}

.bb-cert-content {
  display:flex;
  flex-direction: row;
  gap:12px;
  align-items: center;
  justify-content: flex-start;
}

.bb-cert-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bb-cert-info {
  flex: 1;
  text-align: left;
}

.bb-cert-name {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--bb-black);
  margin-bottom: 2px;
}

.bb-cert-full {
  font-size: 0.95rem;
  color: var(--bb-muted);
  font-weight: 400;
}

.bb-cert-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bb-cert-status.certified {
  background: #dcfce7;
  color: #28a020;
}
.bb-cert-status.supported {
  background: #dcfce7;
  color: #28a020;
}

.bb-cert-status.aligned {
  background: #fef3c7;
  color: #d97706;
}


.bb-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;

  background: var(--bb-blue);
  color: white;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  padding: 12px 0;
}

.bb-ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: bb-scroll 75s linear infinite;
}

.bb-ticker-track span {
  display: inline-block;
  white-space: nowrap;
  word-spacing: 18px;
  letter-spacing: 0.5px;

  padding-right: 100px;

  font-size: 14px;
  font-weight: 500;
  color: white;
}

/* smooth loop */
@keyframes bb-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.bb-clients {
  padding: 80px 0;
  background: white;
  border-top: 1px solid var(--bb-border);
}

.bb-clients-header {
  text-align: center;
  margin-bottom: 52px;
}

.bb-trusted-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bb-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bb-trusted-meta {
  font-size: 0.82rem;
  color: var(--bb-muted);
  font-weight: 400;
}

.bb-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.bb-client-tile {
  border: 1px solid var(--bb-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  text-align: center;
}

.bb-client-tile:hover {
  border-color: var(--bb-accent);
  background: var(--bb-lavender);
}

.bb-client-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bb-muted);
  letter-spacing: -0.01em;
}

.bb-client-tile:hover .bb-client-name {
  color: var(--bb-violet);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.bb-testimonials {
  padding: 30px 0;
  background: var(--bb-off);
}


.bb-testimonials-header .bb-section-heading {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 25px;
}

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

.bb-testi-card {
  background: white;
  border: 1px solid var(--bb-border);
  border-radius: var(--radius-lg);
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  padding: 32px;
  transition: all var(--transition);
}

.bb-testi-card:hover {
  box-shadow: var(--bb-shadow-lg);
  transform: translateY(-3px);
}

.bb-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: #f59e0b;
  font-size: 0.9rem;
}

.bb-testi-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bb-text);
  margin-bottom: 24px;
  font-weight: 400;
  font-style: italic;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.bb-testi-quote::before {
  content: '"';
}

.bb-testi-quote::after {
  content: '"';
}

.bb-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--bb-border);
}

.bb-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a1f3d, #1044b4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bb-testi-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bb-dark);
}

.bb-testi-role {
  font-size: 0.8rem;
  color: var(--bb-muted);
  margin-top: 1px;
}

.bb-testi-org {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bb-violet);
  text-align: right;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.bb-cta {
  background: linear-gradient(135deg, var(--bb-deep) 0%, var(--bb-dark) 50%, var(--bb-primary) 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.bb-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.bb-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.bb-cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bb-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bb-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.bb-cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.bb-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.bb-btn-white {
  background: white;
  color: var(--bb-violet);
  font-weight: 700;
}

.bb-btn-white:hover {
  background: var(--bb-lavender);
  transform: translateY(-2px);
}

.bb-btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: white;
  font-weight: 500;
}

.bb-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.bb-footer {
  background: var(--bb-text);
  padding: 80px 0 40px;
  color: white;
}

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

.bb-footer-brand .bb-logo {
  color: white;
  margin-bottom: 16px;
}

.bb-footer-tagline {
  font-size: 1rem;
  line-height: 1.65;
  color: white;
  margin-bottom: 20px;
  font-weight: 400;
}

.bb-footer-certs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.bb-footer-cert-badge {
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bb-footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bb-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bb-footer-links a {
  font-size: 0.925rem;
  color: white;
  transition: color var(--transition);
  font-weight: 400;
}

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

.bb-footer-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 400;
  color: white;
}

/* ============================================================
   MOBILE NAV MENU
   ============================================================ */
.bb-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: white;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.bb-mobile-menu.open {
  transform: translateX(0);
}

.bb-mobile-menu a {
  display: block;
  padding: 4px 0;
  border-bottom: 1px solid var(--bb-border);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bb-dark);
}

.bb-mobile-menu a:hover {
  color: var(--bb-violet);
}

.bb-mobile-menu .bb-btn {
  margin-top: 24px;
  justify-content: center;
  font-size: 1rem;
}

.bb-mobile-link {
  font-size: small;
  padding: 2px 6px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.bb-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bb-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.bb-reveal-delay-1 {
  transition-delay: 0.1s;
}

.bb-reveal-delay-2 {
  transition-delay: 0.2s;
}

.bb-reveal-delay-3 {
  transition-delay: 0.3s;
}

.bb-reveal-delay-4 {
  transition-delay: 0.4s;
}

.bb-reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bb-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bb-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .bb-nav-links {
    display: none;
  }

  .bb-nav-cta {
    display: none;
  }

  .bb-hamburger {
    display: flex;
  }

  .bb-mobile-menu {
    display: flex;
  }

  .bb-hero {
    padding: 100px 0 60px;
  }

  .bb-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bb-hero-visual {
    display: none;
  }

  .bb-metrics-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bb-metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
  }

  .bb-metric-item:nth-child(even) {
    border-right: none;
  }

  .bb-products-grid {
    grid-template-columns: 1fr;
  }

  .bb-certs-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bb-certs-list {
    grid-template-columns: 1fr;
  }

  .bb-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bb-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .bb-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bb-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .bb-hero-stats {
    gap: 20px;
    justify-content: center;
  }

  .bb-form-row {
    flex-direction: column;
    gap: 0;
  }

  .bb-hero-headline {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .bb-container {
    padding: 0 20px;
  }

  .bb-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .bb-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .bb-hero-headline {
    font-size: 2.1rem;
  }
}


/* ============================================================
   PRODUCT SINGLE PAGE STYLES — Modern 2025 Design
   ============================================================ */

/* ── Sticky product nav ── */
.bb-pnav {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bb-border);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bb-pnav.visible {
  transform: translateY(0);
}

.bb-pnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  gap: 32px;
}

.bb-pnav-links {
  display: flex;
  gap: 2px;
}

.bb-pnav-link {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bb-primary);
  background: rgba(37, 99, 235, 0.08); 
  border: 1px solid rgba(37, 99, 235, 0.15);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body) !important;
}

/* hover */
.bb-pnav-link:hover {
  background: rgba(37, 99, 235, 0.14);
  border-color: rgba(37, 99, 235, 0.25);
}

/* active (blue + green accent) */
.bb-pnav-link.active {
  color: var(--bb-blue);
  border: 1px solid rgba(44, 180, 36, 0.35);
  box-shadow: 0 4px 12px rgba(44, 180, 36, 0.15);
}

.bb-pnav-cta {
  flex-shrink: 0;
}

/* ── Hero ── */
.bb-product-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 30px 0 20px;
  background: var(--bb-deep);
  position: relative;
  overflow: hidden;
}

/* Animated bg mesh */
.bb-hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bb-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.bb-mesh-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--bb-violet);
  top: -150px;
  right: -100px;
  animation-duration: 9s;
}

.bb-mesh-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--bb-bright);
  bottom: -100px;
  left: -80px;
  animation-duration: 12s;
  animation-delay: -3s;
}

.bb-mesh-blob-3 {
  width: 300px;
  height: 300px;
  background: #06b6d4;
  top: 40%;
  left: 40%;
  animation-duration: 7s;
  animation-delay: -5s;
  opacity: 0.1;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 20px) scale(1.1);
  }
}

/* Grid lines overlay */
.bb-hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bb-product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bb-product-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  margin-bottom: 32px;
  padding: 8px 16px;
  margin-top:40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  transition: all 0.25s;
  text-decoration: none;
}

.bb-product-hero-back:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.bb-product-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 16px 40px rgba(0, 0, 0, 0.3);
}

.bb-product-hero-icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 60%);
  pointer-events: none;
}

.bb-product-hero-category {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-accent);
  margin-bottom: 12px;
}

.bb-product-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.bb-product-hero-desc {
  font-size: 1.25rem;
  color:white;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 480px;
}

.bb-product-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.bb-product-hero-tags .bb-tag {
  background: rgba(139, 92, 246, 0.2);
  color: var(--bb-accent);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.bb-product-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero right — floating dashboard card */
.bb-product-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bb-product-showcase {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  animation: cardFloat 6s ease-in-out infinite alternate;
}

@keyframes cardFloat {
  0% {
    transform: translateY(0px) rotate(-0.5deg);
  }

  100% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}

.bb-product-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a1f3d, #1044b4);
  border-radius: 24px 24px 0 0;
}

.bb-showcase-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.bb-showcase-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.bb-showcase-title {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  margin-left: 4px;
  flex: 1;
}

.bb-showcase-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #6ad45a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bb-showcase-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ad45a;
  animation: pulse-green 1.5s ease infinite;
}

@keyframes pulse-green {

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

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.bb-showcase-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bb-showcase-stat:last-child {
  border-bottom: none;
}

.bb-showcase-stat-label {
  font-size: 0.85rem;
  color: white;
  font-weight: 400;
}

.bb-showcase-stat-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
}

.bb-showcase-stat-badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(52, 211, 153, 0.15);
  color: #6ad45a;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

/* Floating badge decoration */
.bb-hero-float-badge {
  z-index: 10;
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bb-dark);
  white-space: nowrap;
  animation: badgeFloat 4s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

.bb-hero-float-badge-1 {
  top: -40px;
  left: -30px;
  animation-delay: -1s;
}

.bb-hero-float-badge-2 {
  bottom: -50px;
  right: -10px;
  animation-delay: -2.5s;
}

.bb-hero-float-badge span {
  font-size: 1rem;
}

/* ── Scroll indicator ── */
.bb-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeInUp 1s ease 1.5s both;
}

.bb-scroll-hint-arrow {
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.bb-scroll-hint-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(14px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ── Key metrics strip ── */
.bb-product-metrics {
  background: white;
  border-bottom: 1px solid var(--bb-border);
  padding: 0;
}

.bb-product-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bb-product-metric {
  padding: 36px 28px;
  border-right: 1px solid var(--bb-border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.bb-product-metric:last-child {
  border-right: none;
}

.bb-product-metric::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a1f3d, #1044b4);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.bb-product-metric:hover {
  background: var(--bb-off);
}

.bb-product-metric:hover::before {
  transform: scaleX(1);
}

.bb-product-metric-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--bb-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.bb-product-metric-num .accent {
  color: var(--bb-violet);
}

.bb-product-metric-label {
  font-size: 0.85rem;
  color: var(--bb-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Features ── */
.bb-product-features {
  padding: 30px 0;
  background: var(--bb-off);
}

.bb-features-header {

  align-items: center;
  margin-bottom: 60px;
  text-align: center;
}

.bb-feature-head {
  display: flex;
  align-items: center;
  gap: 12px; /* spacing between icon and title */
}

.bb-feature-head .bb-feature-title {
  margin: 0; /* remove default h3 margin */
}


.bb-features-header .bb-section-sub {
max-width: 650px;
  margin: 0 auto;
}

.bb-features-header-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.bb-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bb-feature-card {
  background: white;
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.bb-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 68, 180, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.bb-feature-card:hover {
  border-color: var(--bb-accent);
  box-shadow: 0 20px 60px rgba(16, 68, 180, 0.12);
  transform: translateY(-6px);
}

.bb-feature-card:hover::after {
  opacity: 1;
}

.bb-feature-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.3s;
}

.bb-feature-card:hover .bb-feature-icon {
  transform: scale(1.15) rotate(-5deg);
}

.bb-feature-title {
  font-weight: 700;
  color: var(--bb-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
/* .bb-feature-title { margin: 0 0 12px; line-height: 1.3; color: var(--bb-text); font-size: 1rem; } */


.bb-feature-desc {
  font-size: 1.o5rem;
  color: var(--bb-muted);
  line-height: 1.7;
  font-weight: 400;
}

/* ── VIDEO CAROUSEL ── */
.bb-video-section {
  padding: 30px 0;
  background: var(--bb-deep);
  position: relative;
  overflow: hidden;
}

.bb-video-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bb-video-section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.bb-video-section-header .bb-section-eyebrow {
  color: var(--bb-accent);
}

.bb-video-section-header .bb-section-heading {
  color: white;
}

.bb-video-section-header .bb-section-sub {
  color: white;
  margin: 0 auto;
}

.bb-carousel-wrap {
  position: relative;
  z-index: 1;
}

.bb-carousel {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.bb-carousel-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16/9;
}

.bb-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.bb-carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Video embed wrapper */
.bb-video-embed {
  position: relative;
  width: 100%;
  height: 100%;
}

.bb-video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Placeholder when not playing */
.bb-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(16, 68, 180, 0.3), rgba(2, 15, 26, 0.8));
  cursor: pointer;
  transition: background 0.3s;
}

.bb-video-placeholder:hover {
  background: linear-gradient(135deg, rgba(16, 68, 180, 0.45), rgba(2, 15, 26, 0.85));
}

.bb-video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}

.bb-video-placeholder:hover .bb-video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.bb-video-play-btn svg {
  color: var(--bb-violet);
  margin-left: 4px;
}

.bb-video-slide-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  text-align: center;
  padding: 0 24px;
}

.bb-video-slide-sub {
  font-size: 0.95rem;
  color: white;
  text-align: center;
  padding: 0 32px;
  line-height: 1.5;
}

/* Carousel controls overlay */
.bb-carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 2;
}

.bb-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.bb-carousel-dot.active {
  background: white;
  width: 24px;
}

/* Prev / Next arrows */
.bb-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 3;
}

.bb-carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.bb-carousel-arrow-prev {
  left: 14px;
}

.bb-carousel-arrow-next {
  right: 14px;
}

/* Sidebar thumbnails */
.bb-carousel-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  height: 100%; 
}

.bb-carousel-thumb {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.bb-carousel-thumb::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1044b4, #2563eb);
  opacity: 0;
  transition: opacity 0.3s;
}

.bb-carousel-thumb.active {
  background: rgba(16, 68, 180, 0.15);
  border-color: rgba(16, 68, 180, 0.35);
}

.bb-carousel-thumb.active::before {
  opacity: 1;
}

.bb-carousel-thumb:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.bb-thumb-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16, 68, 180, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background 0.3s;
}

.bb-carousel-thumb.active .bb-thumb-icon {
  background: rgba(16, 68, 180, 0.4);
}

.bb-thumb-info {
  flex: 1;
  min-width: 0;
}

.bb-thumb-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bb-thumb-duration {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.bb-thumb-play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.bb-carousel-thumb.active .bb-thumb-play,
.bb-carousel-thumb:hover .bb-thumb-play {
  background: rgba(255, 255, 255, 0.15);
}

/* ── MOBILE RESPONSIVE ── */

@media (max-width: 900px) {
  .bb-carousel {
    grid-template-columns: 1fr 280px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .bb-video-section {
    padding: 40px 0;
  }

  .bb-video-section-header {
    margin-bottom: 32px;
  }

  /* Stack carousel to single column */
  .bb-carousel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Sidebar hidden on mobile per user request */
  .bb-carousel-sidebar {
    display: none;
  }

  .bb-carousel-thumb {
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    width: 140px;
    padding: 12px;
    border-radius: 12px;
    gap: 8px;
  }

  /* Active indicator shifts to top on horizontal layout */
  .bb-carousel-thumb::before {
    left: 0;
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 3px;
    background: linear-gradient(90deg, #1044b4, #2563eb);
  }

  .bb-thumb-info {
    width: 100%;
  }

  .bb-thumb-title {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .bb-thumb-play {
    display: none;
  }

  .bb-thumb-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-radius: 8px;
  }

  /* Smaller arrows on mobile */
  .bb-carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .bb-carousel-arrow-prev {
    left: 8px;
  }

  .bb-carousel-arrow-next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .bb-video-section {
    padding: 32px 0;
  }

  .bb-video-section-header {
    margin-bottom: 24px;
  }

  .bb-video-play-btn {
    width: 56px;
    height: 56px;
  }

  .bb-video-play-btn svg {
    width: 20px;
    height: 20px;
  }

  .bb-video-slide-label {
    font-size: 0.85rem;
    padding: 0 16px;
  }

  .bb-video-slide-sub {
    font-size: 0.75rem;
    padding: 0 20px;
  }

  .bb-carousel-controls {
    bottom: 12px;
  }

  .bb-carousel-dot {
    width: 6px;
    height: 6px;
  }

  .bb-carousel-dot.active {
    width: 18px;
  }

  .bb-carousel-thumb {
    width: 120px;
    padding: 10px;
  }

  .bb-thumb-title {
    font-size: 0.74rem;
  }

  .bb-thumb-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
}

/* ── How It Works ── */
.bb-product-how {
  padding: 30px 0;
  background: white;
}

.bb-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.bb-steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(12.5%);
  width: calc(75%);
  height: 2px;
  background: linear-gradient(90deg, #0a1f3d, #1044b4);
  z-index: 0;
}

.bb-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.bb-step-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--bb-violet);
  color: var(--bb-violet);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.35s;
  box-shadow: 0 0 0 6px var(--bb-lavender);
}

.bb-step:hover .bb-step-num {
  background: linear-gradient(135deg, #0a1f3d, #1044b4);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--bb-lavender), 0 12px 32px rgba(16, 68, 180, 0.3);
}

.bb-step-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bb-dark);
  margin-bottom: 10px;
}

.bb-step-desc {
  font-size: 0.82rem;
  color: var(--bb-muted);
  line-height: 1.65;
  font-weight: 400;
}

/* ── Specs ── */
.bb-product-specs {
  padding: 30px 0;
  background: var(--bb-off);
}

.bb-specs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}

.bb-spec-group {
  background: white;
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 32px;
  transition: box-shadow 0.3s;
}

.bb-spec-group:hover {
  box-shadow: var(--bb-shadow);
}

.bb-spec-group-title {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bb-violet);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bb-lavender);
}

.bb-spec-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bb-border);
  transition: padding-left 0.2s;
}

.bb-spec-row:last-child {
  border-bottom: none;
}

.bb-spec-row:hover {
  padding-left: 4px;
}

.bb-spec-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a1f3d, #1044b4);
  color: white;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 900;
}

.bb-spec-text {
  font-size: 1rem;
  color: var(--bb-text);
  font-weight: 400;
  line-height: 1.5;
}

/* ── More Products ── */
.bb-more-products {
  padding: 30px 0;
  background: white;
}
.bb-more-products .bb-section-heading {
 text-align: center;
}

.bb-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* ── Product CTA ── */
.bb-product-cta {
  padding: 120px 0;
  background: var(--bb-deep);
  position: relative;
  overflow: hidden;
}

.bb-product-cta-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bb-product-cta-mesh::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  top: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(16, 68, 180, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.bb-product-cta-mesh::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.bb-product-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.bb-cta-eyebrow {
  color: var(--bb-accent);
}

.bb-cta-heading {
  color: white;
}

.bb-cta-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bb-product-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }

  .bb-product-hero-visual {
    display: none;
  }

  .bb-product-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bb-product-metric:nth-child(2) {
    border-right: none;
  }

  .bb-product-metric:nth-child(3) {
    border-top: 1px solid var(--bb-border);
  }

  .bb-product-metric:nth-child(4) {
    border-top: 1px solid var(--bb-border);
    border-right: none;
  }

  .bb-features-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bb-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bb-carousel {
    grid-template-columns: 1fr;
  }

  .bb-carousel-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .bb-carousel-thumb {
    min-width: 200px;
  }

  .bb-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .bb-steps::before {
    display: none;
  }

  .bb-specs-layout {
    grid-template-columns: 1fr;
  }

  .bb-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bb-product-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .bb-features-grid {
    grid-template-columns: 1fr;
  }

  .bb-steps {
    grid-template-columns: 1fr;
  }

  .bb-more-grid {
    grid-template-columns: 1fr;
  }

  .bb-pnav-links {
    display: none;
  }

  .bb-product-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .bb-product-hero-actions .bb-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ── Button label fix — ensure clean text rendering ── */
.bb-btn {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}


/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.bb-contact-section {
  padding: 30px 0;
  background: white;
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
}

.bb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.bb-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.bb-contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bb-lavender);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.bb-contact-detail-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bb-muted);
  margin-bottom: 3px;
}
.bb-contact-detail-val {
  font-size: 1rem;
  color: var(--bb-dark);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}
a.bb-contact-detail-val:hover { color: var(--bb-violet); }

.bb-contact-form-card {
  background: var(--bb-off);
  border: 1px solid var(--bb-border);
  border-radius: 24px;
  padding: 40px;
  margin: 0 40px;
}
.bb-contact-form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bb-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.bb-contact-form-sub {
  font-size: 1rem;
  color: var(--bb-black);
  font-weight: 400;
  margin-bottom: 28px;
}

.bb-contact-form { display: flex; flex-direction: column; gap: 16px; }

.bb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bb-form-group { display: flex; flex-direction: column; gap: 6px; }
.bb-form-group-full { grid-column: 1 / -1; }

.bb-form-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bb-dark);
  letter-spacing: 0.02em;
}
.bb-required { color: var(--bb-red); }

.bb-form-input {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--bb-dark);
  background: white !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1.5px solid var(--bb-border);
  border-radius: var(--radius-md);
  padding: 11px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.bb-form-input,
.bb-form-input:focus {
  border: 1.5px solid var(--bb-border);
}
.bb-form-input::placeholder { color: #b0aac0; }
.bb-form-select { cursor: pointer; }
.bb-form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.bb-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 32px 20px;
  border-radius: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;

  min-height: 320px;
}

.bb-form-success h4 {
  margin-top: 10px;
}

.bb-form-success p {
  max-width: 420px;
}

.bb-form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #dc2626;
  font-weight: 500;
}

@media (max-width: 900px) {
  .bb-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .bb-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bb-contact-form-card { padding: 24px; margin: 0; }
}

/* ── Axiom product page extra section responsive ── */
@media (max-width: 768px) {
  .bb-contact-grid { grid-template-columns: 1fr !important; }
}

/* ── Nav button clean look — no code font appearance ── */
.bb-nav-cta .bb-btn,
.bb-cta-actions .bb-btn,
.bb-product-cta .bb-btn,
.bb-hero-actions .bb-btn,
.bb-product-hero-actions .bb-btn {
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  font-style: normal !important;
}

/* ── outline-white button (product hero) ── */
.bb-btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white;
  font-weight: 600;
}
.bb-btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ── Axiom sections grid responsive ── */
@media (max-width: 900px) {
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}
@media (max-width: 600px) {
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   MEGA NAV — RESPONSIVE (hide on mobile, show hamburger)
   ============================================================ */
/* @media (max-width: 960px) {
  .bb-mega-panel {
    display: none !important;
  }
  .bb-nav-chevron {
    display: none;
  }
} */

/* ============================================================
   BLUE-GREEN SEPARATOR LINES
   A blue accent line separates sections; green used for CTAs/buttons
   ============================================================ */
.bb-section-line {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0a1f3d, #1044b4);
  margin: 0 auto 24px;
}

.bb-section-line--left {
  margin-left: 0;
}

/* Blue left-border accent on cards */
.bb-card-blue-accent {
  border-left: 4px solid var(--bb-violet) !important;
}

/* Green bottom-border accent on feature cards */
.bb-card-green-accent {
  border-bottom: 3px solid var(--bb-bright) !important;
}

/* ============================================================
   TRUST BAR — alternating blue/green dots
   ============================================================ */
.bb-cert-tag:nth-child(even)::before {
  background: var(--bb-bright);
}

/* ============================================================
   NAV ACTIVE STATE INDICATOR — blue underline
   ============================================================ */
.bb-nav-item > a.active,
.bb-nav-links a.active {
  color: var(--bb-violet);
  font-weight: 600;
}

/* Mega panel link arrow on hover */
.bb-mega-link:hover::after {
  content: '→';
  margin-left: auto;
  color: var(--bb-violet);
  font-size: 0.85rem;
}

/* ============================================================
   BUTTON GREEN VARIANT
   ============================================================ */
.bb-btn-green {
  background: linear-gradient(135deg, var(--bb-bright) 0%, #28a020 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(34, 160, 107, 0.35);
}
.bb-btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 160, 107, 0.45);
  color: white;
}

/* ============================================================
   HERO & SECTION DIVIDERS — blue line accent
   ============================================================ */
.bb-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a1f3d, #1044b4);
}



/* ============================================================
   BLUE PRIMARY THEME — Green used ONLY as strategic accent
   Blue #1044b4 = brand, Green #2cb424 = CTA / highlight only
   ============================================================ */

/* Logo icon = blue gradient */
.bb-logo-icon {
  background: linear-gradient(135deg, #0a1f3d, #1044b4) !important;
}

/* .bb-nav-links a:hover,
.bb-nav-item:hover > a {
  color: #1044b4 !important;
  background: rgba(16, 68, 180, 0.06) !important;
} */

/* PRIMARY BUTTON = Green — the ONE green CTA element */
.bb-btn-primary {
  background: #2cb424 !important;
  box-shadow: 0 4px 14px rgba(44, 180, 36, 0.30) !important;
  color: white !important;
}
.bb-btn-primary:hover {
  background: #28a020 !important;
  box-shadow: 0 8px 24px rgba(44, 180, 36, 0.45) !important;
  color: white !important;
}

.bb-partner-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  border-radius: 28px; 
}

/* Image */
.bb-partner-image-wrap img {
  max-width: 100%;
  height: 420px;
  opacity: 0.95;
  display: block;
  border-radius: 28px; 
}

/* SHIMMER (this is the real glitter you were missing) */
.bb-partner-image-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.15) 45%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0.15) 55%,
    transparent 70%
  );
  transform: skewX(-25deg);
  animation: shimmerPass 4s ease-in-out infinite;
  pointer-events: none;
}

/* Optional tiny sparkle dots (VERY subtle premium grain) */
.bb-partner-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.25) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.03;
  pointer-events: none;
}

/* Animation */
@keyframes shimmerPass {
  0% {
    left: -150%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    left: 120%;
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

/* subtle floating + zoom */
@keyframes bb-floatZoom {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

/* OUTLINE BUTTON = Blue */
.bb-btn-outline {
  color: #1044b4 !important;
  border: 2px solid #1044b4 !important;
  background: transparent !important;
}
.bb-btn-outline:hover {
  background: #eff6ff !important;
}

/* Ghost btn = blue */
.bb-btn-ghost:hover {
  color: #1044b4 !important;
}

/* Trust bar = all blue */
/* .bb-trust-bar {
  background: #1044b4 !important;
} */
.bb-cert-tag {
  background: rgba(255,255,255,0.15) !important;
  color: white !important;
  border-color: rgba(255,255,255,0.25) !important;
}
.bb-cert-tag::before {
  background: #2cb424 !important;  /* green dot inside blue bar */
}
.bb-cert-tag:nth-child(even)::before {
  background: #6ad45a !important;
}

/* Section line = blue */
.bb-section-line {
  background: #1044b4 !important;
}

/* Cards = blue accents */
.bb-product-card,
.bb-feature-card,
.bb-card {
  border-top: 1px solid #1044b4 !important;
}

/* Hover state */
.bb-product-card:hover,
.bb-feature-card:hover {
  border: none !important;                 /* reset all borders */
  border: 1px solid #2cb424 !important;   /* apply only green */
  box-shadow: 0 8px 32px rgba(44, 180, 36, 0.12) !important;
}
/* Mega panel = blue top border */
.bb-mega-panel {
  border-top: 3px solid #1044b4 !important;
}

/* Mega featured card - blue and green */
.bb-mega-card--blue {
  background: rgba(16, 68, 180, 0.06) !important;
  border-color: rgba(16, 68, 180, 0.25) !important;
}
.bb-mega-card--blue:hover {
  border-color: #1044b4 !important;
  background: rgba(16, 68, 180, 0.12) !important;
}
.bb-mega-card--green {
  background: rgba(44, 180, 36, 0.06) !important;
  border-color: rgba(44, 180, 36, 0.25) !important;
}
.bb-mega-card--green:hover {
  border-color: #2cb424 !important;
  background: rgba(44, 180, 36, 0.10) !important;
}

/* Mega action card = blue */
.bb-mega-action-card {
  background: linear-gradient(135deg, #0a1f3d, #1044b4) !important;
}

/* Book Demo button in mega = green */
.bb-mega-action-card .bb-btn-primary {
  background: #2cb424 !important;
}

/* Hero section */
.bb-hero {
  background: #eff6ff !important;
  border-left: none !important;
}
/* Green highlight for hero CTA area */
.bb-hero-cta .bb-btn-primary {
  background: #2cb424 !important;
}

/* Stat/metric numbers = all blue */
.bb-stat-num {
  color: #1044b4 !important;
}

/* Links = blue */
a { color: #1044b4; }
a:hover { color: #2cb424; }  /* hover = green accent */

/* Nav active indicator = green underline */
.bb-nav-links a.active,
.bb-nav-item > a.active {
  color: #1044b4 !important;
  border-bottom: 2px solid #2cb424;
}

/* Hamburger = blue */
.bb-hamburger span {
  background: #1044b4 !important;
}

/* Form focus = green */
input:focus,
textarea:focus,
select:focus {
  border-color: #2cb424 !important;
  box-shadow: 0 0 0 3px rgba(44, 180, 36, 0.12) !important;
}

/* Required field = green */
.bb-required { color: var(--bb-red); }

/* Section eyebrows/tags = blue */
.bb-section-tag,
.bb-label,
.bb-eyebrow {
  background: #1044b4 !important;
  color: white !important;
}

/* ============================================================
   BLOG & ARTICLE STYLES
   ============================================================ */
.bb-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.bb-blog-card {
    background: var(--bb-off);
    border: 1px solid var(--bb-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bb-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--bb-violet);
}

.bb-blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--bb-border);
}

.bb-blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bb-blog-meta {
    font-size: 0.85rem;
    color: var(--bb-muted);
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.bb-blog-category {
    background: rgba(16, 68, 180, 0.08);
    color: #1044b4;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(16, 68, 180, 0.2);
}

.bb-blog-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bb-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bb-blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bb-blog-title a:hover {
    color: #1044b4;
}

.bb-blog-excerpt {
    font-size: 0.95rem;
    color: var(--bb-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.bb-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1044b4;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.bb-blog-read-more:hover {
    gap: 10px;
    color: #2cb424;
}

/* Pagination */
.bb-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.bb-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: white;
    border: 1px solid var(--bb-border);
    color: var(--bb-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.bb-pagination .page-numbers:hover,
.bb-pagination .page-numbers.current {
    background: #1044b4;
    border-color: #1044b4;
    color: white;
}

/* Single Article Layout */
.bb-article-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: #eff6ff;
    border-bottom: 1px solid var(--bb-border);
}


.bb-article-header-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.bb-article-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--bb-dark);
    max-width: 900px;
    margin: 0 auto 24px;
}

.bb-article-submeta {
    font-size: 1rem;
    color: var(--bb-muted);
}

.bb-article-submeta a {
    color: #1044b4;
    text-decoration: none;
}

.bb-article-submeta a:hover {
    text-decoration: underline;
}

.bb-article-featured-image {
    max-width: 1000px;
    margin: -40px auto 60px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--bb-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.bb-article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bb-article-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.bb-article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bb-text);
    font-weight: 400;
}

.bb-article-content h2,
.bb-article-content h3,
.bb-article-content h4,
.bb-article-content h5,
.bb-article-content h6 {
    font-family: var(--font-display);
    color: var(--bb-dark);
    margin: 48px 0 24px;
    line-height: 1.3;
    font-weight: 700;
}

.bb-article-content h2 { font-size: 2rem; }
.bb-article-content h3 { font-size: 1.5rem; }

.bb-article-content p {
    margin-bottom: 24px;
}

.bb-article-content a {
    color: #1044b4;
    text-decoration: none;
    border-bottom: 1px solid rgba(16, 68, 180, 0.3);
    transition: border-color 0.2s ease;
}

.bb-article-content a:hover {
    border-color: #1044b4;
}

.bb-article-content ul,
.bb-article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.bb-article-content li {
    margin-bottom: 12px;
}

.bb-article-content blockquote {
    margin: 40px 0;
    padding: 24px 32px;
    border-left: 4px solid #1044b4;
    background: #eff6ff;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--bb-dark);
}

.bb-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 32px 0;
    border: 1px solid var(--bb-border);
}

.bb-article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--bb-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bb-article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bb-article-tags a {
    font-size: 0.8rem;
    padding: 6px 14px;
    background: white;
    border: 1px solid var(--bb-border);
    border-radius: 20px;
    color: var(--bb-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.bb-article-tags a:hover {
    background: #1044b4;
    border-color: #1044b4;
    color: white;
}

.bb-post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.bb-post-nav-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    max-width: 45%;
}

.bb-post-nav-link-label {
    font-size: 0.85rem;
    color: var(--bb-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bb-post-nav-link-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bb-dark);
    transition: color 0.2s;
}

.bb-post-nav-link:hover .bb-post-nav-link-title {
    color: #1044b4;
}

.bb-cat-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.bb-cat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}
.bb-cat-pill:hover, .bb-cat-pill.active {
  background: var(--bb-blue);
  color: #fff;
  border-color: var(--bb-blue);
}

/* ============================================================
   RESOURCE GATE FORM
   Full-page split layout: left preview panel + right form panel
   ============================================================ */

.bb-gate-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--bb-off) 0%, var(--bb-lavender) 60%, white 100%);
  padding: 100px 24px 60px;
}

.bb-gate-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1060px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(15, 23, 42, 0.06);
  background: #fff;
}

/* Left — resource preview panel */
.bb-gate-preview {
  background: linear-gradient(135deg, #0a1f3d 0%, #1044b4 50%, #2563eb 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}

.bb-gate-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 61, 0.92) 0%, rgba(10, 31, 61, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
}

.bb-gate-preview-icon {
  font-size: 3.5rem;
  margin-bottom: 12px;
  display: block;
}

.bb-gate-preview-type {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
  backdrop-filter: blur(6px);
}

.bb-gate-preview-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.bb-gate-preview-excerpt {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0 0 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bb-gate-trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bb-gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* Right — form panel */
.bb-gate-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  background: #fff;
  overflow-y: auto;
}

.bb-gate-form-inner {
  width: 100%;
  max-width: 420px;
}

.bb-gate-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bb-muted);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color var(--transition);
}
.bb-gate-back-link:hover { color: var(--bb-violet); }

.bb-gate-form-heading {
  margin-bottom: 28px;
}

.bb-gate-form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bb-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 12px 0 10px;
}

.bb-gate-form-sub {
  font-size: 0.95rem;
  color: var(--bb-muted);
  line-height: 1.7;
  margin: 0;
}

/* Error message */
.bb-gate-error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 12px;
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Form fields */
.bb-gate-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bb-gate-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bb-gate-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--bb-dark);
  letter-spacing: 0.02em;
}

.bb-gate-required {
  color: #dc2626;
}

.bb-gate-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--bb-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.bb-gate-field input:focus {
  border-color: var(--bb-violet);
  box-shadow: 0 0 0 3px rgba(16, 68, 180, 0.1);
}

.bb-gate-field input::placeholder {
  color: #94a3b8;
}

/* Two-column row for company + job title */
.bb-gate-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Submit button — uses existing bb-btn-primary design */
.bb-gate-submit {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #1044b4, #2563eb);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(16, 68, 180, 0.35);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.bb-gate-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 68, 180, 0.45);
}

.bb-gate-submit:active {
  transform: none;
}

.bb-gate-privacy {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
  text-align: center;
  margin: 8px 0 0;
}

.bb-gate-privacy a {
  color: var(--bb-violet);
  text-decoration: none;
  font-weight: 600;
}
.bb-gate-privacy a:hover { text-decoration: underline; }

/* Responsive gate card */
@media (max-width: 860px) {
  .bb-gate-card {
    grid-template-columns: 1fr;
    max-width: 520px;
    border-radius: 20px;
  }
  .bb-gate-preview {
    min-height: 260px;
    border-radius: 0;
  }
  .bb-gate-form-panel {
    padding: 36px 28px;
  }
}

@media (max-width: 520px) {
  .bb-gate-wrap {
    padding: 90px 16px 48px;
  }
  .bb-gate-card {
    border-radius: 16px;
  }
  .bb-gate-row {
    grid-template-columns: 1fr;
  }
  .bb-gate-form-title {
    font-size: 1.5rem;
  }
  .bb-gate-form-panel {
    padding: 28px 20px;
  }
}

/* ============================================================
   RESOURCE PAGE PAGINATION — consistent with blog pagination
   ============================================================ */
.bb-webinars-wrap .page-numbers,
.bb-datasheets-wrap .page-numbers,
.bb-uc-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--bb-border);
  color: var(--bb-dark);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  font-size: 14px;
}

.bb-webinars-wrap .page-numbers:hover,
.bb-webinars-wrap .page-numbers.current,
.bb-datasheets-wrap .page-numbers:hover,
.bb-datasheets-wrap .page-numbers.current,
.bb-uc-wrap .page-numbers:hover,
.bb-uc-wrap .page-numbers.current {
  background: #1044b4;
  border-color: #1044b4;
  color: white;
}

/* ============================================================
   RESOURCES MEGA NAV STYLES  
   ============================================================ */
.bb-mega-panel--resources {
  width: min(900px, calc(100vw - 40px));
}

.bb-mega-grid--resources {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ============================================================
   ABOUT PAGE — Complete Styles
   ============================================================ */

/* ── ABOUT HERO ── */
/* About Hero – same as bb-hero */
.bb-about-hero {
  padding: 80px 0;
  background: var(--bb-lavender) !important;
  position: relative;
  overflow: hidden;
}

/* Grid mesh */
.bb-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);

  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.bb-about-global .bb-hero-mesh,
.bb-about-global .bb-hero-grid-lines {
  display: none !important;
}

/* Content above mesh */
.bb-about-hero .bb-container {
  position: relative;
  z-index: 1;
}
.bb-about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.bb-about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-blue);
  margin-bottom: 28px;
}

.bb-about-hero-eyebrow::before,
.bb-about-hero-eyebrow::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--bb-accent);
  opacity: 0.5;
}

.bb-about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--bb-green);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.bb-about-hero-title .accent {
  color: var(--bb-accent);
  position: relative;
}

.bb-about-hero-desc {
  font-size: 1.2rem;
  color: var(--bb-black);
  line-height: 1.75;
  font-weight: 400;
  margin: 0 auto 48px;
  max-width: 640px;
}

/* Hero stat pills */
.bb-about-hero-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bb-about-stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 28px;

  background: #ffffff; /* solid white for contrast */
  border: 1px solid #e2e8f0;

  border-radius: 16px;
  min-width: 110px;

  box-shadow: 0 6px 20px rgba(16, 68, 180, 0.08); /* soft blue shadow */
  transition: all 0.25s ease;
}

.bb-about-stat-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(16, 68, 180, 0.15);
  border-color: #c7d2fe;
}

.bb-about-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;

  color: #0a1f3d; /* dark text */
  letter-spacing: -0.03em;
  line-height: 1;
}

.bb-about-stat-num .accent-plus {
  color: #2563eb; /* blue accent */
}

.bb-about-stat-label {
  font-size: 0.72rem;

  color: #64748b; /* readable grey */
  font-weight: 600;

  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ── MISSION / VISION / PURPOSE ── */
.bb-about-mission {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.bb-about-mission-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.bb-about-mission-eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bb-green);
}

.bb-about-mission-list {
  position: relative;
}

.bb-about-mission-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 0 0 28px;
  margin: 0 0 28px;
  border-bottom: 1px solid rgba(16, 68, 180, 0.1);
}

.bb-about-mission-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.bb-about-mission-item-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.bb-about-mission-item-icon--vision {
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
}

.bb-about-mission-item-icon--purpose {
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.bb-about-mission-item-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--bb-dark);
  letter-spacing: -0.02em;
}

.bb-about-mission-item-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--bb-muted);
}

@media (max-width: 991px) {
  .bb-about-mission-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .bb-about-mission {
    padding: 64px 0;
  }

  .bb-about-mission-item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .bb-about-mission-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.2rem;
  }

  .bb-about-mission-item-title {
    font-size: 1.12rem;
  }

  .bb-about-mission-item-text {
    font-size: 0.96rem;
    line-height: 1.7;
  }
}
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  background: #e8efff;              /* light blue bg */
  border: 1px solid #dbe7ff;        /* subtle border */

  transition: all 0.25s ease;
}
.icon-box svg {
  width: 22px;
  height: 22px;

  stroke: #1044b4;                  /* primary blue */
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-box-success {
  width: 52px;
  height: 52px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  background: #ffffff;
  border: 1px solid #e5e7eb;

  transition: all 0.25s ease;
}

.icon-box-success svg {
  width: 22px;
  height: 22px;

  stroke: var(--bb-green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bb-icon svg {
  width: 18px;
  height: 18px;

  stroke: currentColor;   /* inherits text color */
  fill: none;
  stroke-width: 1.8;
}

/* ── TIMELINE ── */
.bb-about-story {
  padding: 30px 0;
  background: linear-gradient(160deg, var(--bb-off) 0%, var(--bb-lavender) 60%, white 100%);
  position: relative;
}

.bb-about-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bb-about-story-header {
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.bb-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

/* Vertical line */
.bb-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--bb-accent), var(--bb-violet), var(--bb-green));
  border-radius: 2px;
}

.bb-timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.bb-timeline-item:last-child {
  padding-bottom: 0;
}

/* Dot */
.bb-timeline-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--bb-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.bb-timeline-dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bb-violet);
}

.bb-timeline-dot--current {
  border-color: var(--bb-green);
  box-shadow: 0 0 0 6px rgba(44, 180, 36, 0.15);
}

.bb-timeline-dot--current .bb-timeline-dot-inner {
  background: var(--bb-green);
  animation: pulse-green 1.5s ease infinite;
}

.bb-timeline-content {
  background: white;
  border: 1px solid var(--bb-border);
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.bb-timeline-content:hover {
  border-color: var(--bb-accent);
  box-shadow: 0 12px 40px rgba(16, 68, 180, 0.08);
  transform: translateX(4px);
}

.bb-timeline-year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bb-violet);
  background: var(--bb-lavender);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.bb-timeline-item--current .bb-timeline-year {
  color: #166534;
  background: #dcfce7;
}

.bb-timeline-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bb-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bb-timeline-desc {
  font-size: 0.95rem;
  color: var(--bb-muted);
  line-height: 1.65;
  font-weight: 400;
}


/* ── CORE VALUES ── */
.bb-about-values {
  padding: 60px 0;
  background: white;
}

.bb-about-values-header {
  margin-bottom: 60px;
}

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

.bb-about-value-card {
  background: white;
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bb-about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.bb-about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(16, 68, 180, 0.1);
}

.bb-about-value-card:hover::before {
  opacity: 1;
}

/* Color accents for value cards */
/* All value cards use same blue accent */
.bb-about-value-card::before {
  background: linear-gradient(90deg, var(--bb-blue), var(--bb-bright));
}

/* Hover border */
.bb-about-value-card:hover {
  border-color: rgba(16, 68, 180, 0.25);
}

.bb-about-value-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.3s;
}

.bb-about-value-card:hover .bb-about-value-icon {
  transform: scale(1.15) rotate(-5deg);
}

.bb-about-value-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bb-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.bb-about-value-desc {
  font-size: 0.95rem;
  color: var(--bb-muted);
  line-height: 1.7;
  font-weight: 400;
}


/* ── LEADERSHIP TEAM ── */
.bb-about-team {
  padding: 60px 0;
  background: var(--bb-off);
}

.bb-about-team-header {
  margin-bottom: 60px;
}

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

.bb-about-member-card {
  background: white;
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bb-about-member-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 68, 180, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.bb-about-member-card:hover {
  border-color: var(--bb-accent);
  box-shadow: 0 20px 60px rgba(16, 68, 180, 0.1);
  transform: translateY(-6px);
}

.bb-about-member-card:hover::after {
  opacity: 1;
}

.bb-about-member-avatar {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.bb-about-member-card:hover .bb-about-member-avatar {
  transform: scale(1.05);
}

.bb-about-member-initials {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.bb-about-member-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bb-dark);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.bb-about-member-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bb-violet);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.bb-about-member-bio {
  font-size: 0.9rem;
  color: var(--bb-muted);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.bb-about-member-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.bb-about-member-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bb-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bb-violet);
  transition: all 0.25s;
}

.bb-about-member-social a:hover {
  background: var(--bb-violet);
  color: white;
  transform: translateY(-2px);
}


/* ── CERTIFICATIONS / TRUST (Dark Section) ── */
.bb-about-trust {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bb-deep) 0%, var(--bb-dark) 50%, var(--bb-primary) 100%);
  position: relative;
  overflow: hidden;
}

.bb-about-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bb-about-trust-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.bb-about-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.bb-about-trust-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bb-about-trust-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.bb-about-trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s;
}

.bb-about-trust-card:hover .bb-about-trust-icon {
  transform: scale(1.1);
}

.bb-about-trust-icon img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
}

.bb-about-trust-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.bb-about-trust-full {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 400;
}

.bb-about-trust-status {
  display: inline-flex;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(52, 211, 153, 0.15);
  color: #6ad45a;
  border: 1px solid rgba(52, 211, 153, 0.25);
}


/* ── GLOBAL PRESENCE ── */
.bb-about-global {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bb-blue), var(--bb-blue-2));
}

.bb-about-global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bb-about-offices {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bb-about-office {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bb-off);
  border: 1px solid var(--bb-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.bb-about-office:hover {
  border-color: var(--bb-accent);
  box-shadow: 0 8px 24px rgba(16, 68, 180, 0.08);
  transform: translateX(4px);
}

.bb-about-office-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.bb-about-office-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--bb-dark);
  margin-bottom: 2px;
}

.bb-about-office-role {
  font-size: 0.85rem;
  color: var(--bb-muted);
  font-weight: 400;
}

/* Globe visualization */
.bb-about-global-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.bb-about-global-visual,
.bb-about-map-card {
  min-width: 0;
}

.bb-about-map-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(16,68,180,0.08);
}

.bb-world-map {
  width: 100%;
  height: 420px;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .bb-about-global-grid {
    grid-template-columns: 1fr;
  }

  .bb-world-map {
    height: 320px;
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .bb-about-map-card {
    padding: 12px;
    border-radius: 18px;
  }

  .bb-world-map {
    height: 260px;
    min-height: 260px;
    border-radius: 14px;
  }
}
/* ── TRUSTED BY CLIENTS ── */
.bb-about-clients {
  padding: 80px 0;
  background: var(--bb-off);
  border-top: 1px solid var(--bb-border);
}

.bb-about-clients-header {
  margin-bottom: 48px;
}

.bb-about-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.bb-about-client-tile {
  border: 1px solid var(--bb-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: all var(--transition);
  text-align: center;
}

.bb-about-client-tile:hover {
  border-color: var(--bb-accent);
  background: white;
  box-shadow: 0 8px 24px rgba(16, 68, 180, 0.08);
  transform: translateY(-3px);
}

.bb-about-client-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bb-muted);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.bb-about-client-tile:hover .bb-about-client-name {
  color: var(--bb-violet);
}


/* ── PRODUCTS ECOSYSTEM ── */
.bb-about-ecosystem {
  padding: 100px 0;
  background: white;
}

.bb-about-eco-header {
  margin-bottom: 52px;
}

.bb-about-eco-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.bb-about-eco-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border: 1px solid var(--bb-border);
  border-radius: 16px;
  background: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bb-about-eco-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1044b4, #2cb424);
  opacity: 0;
  transition: opacity 0.3s;
}

.bb-about-eco-card:hover {
  border-color: var(--bb-accent);
  box-shadow: 0 12px 40px rgba(16, 68, 180, 0.08);
  transform: translateX(4px);
}

.bb-about-eco-card:hover::before {
  opacity: 1;
}

.bb-about-eco-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bb-off);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
}

.bb-about-eco-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.bb-about-eco-info {
  flex: 1;
  min-width: 0;
}

.bb-about-eco-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bb-dark);
  margin-bottom: 2px;
}

.bb-about-eco-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bb-violet);
  margin-bottom: 4px;
}

.bb-about-eco-desc {
  font-size: 0.88rem;
  color: var(--bb-muted);
  line-height: 1.5;
  font-weight: 400;
}

.bb-about-eco-arrow {
  flex-shrink: 0;
  color: var(--bb-accent);
  transition: transform 0.3s;
}

.bb-about-eco-card:hover .bb-about-eco-arrow {
  transform: translateX(4px);
}


/* ── ABOUT CTA ── */
.bb-about-cta {
  padding: 60px 0;
  background: linear-gradient(160deg, var(--bb-off) 0%, var(--bb-lavender) 60%, white 100%);
}

.bb-about-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: white;
  border: 1px solid var(--bb-border);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(16, 68, 180, 0.08);
  position: relative;
  overflow: hidden;
}

.bb-about-cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0a1f3d, #1044b4, #2cb424);
}

.bb-about-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--bb-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.bb-about-cta-desc {
  font-size: 1.05rem;
  color: var(--bb-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}

.bb-about-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── ABOUT PAGE — MOBILE RESPONSIVE ── */

@media (max-width: 1024px) {
  .bb-about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bb-about-global-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .bb-about-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .bb-about-hero-title {
    font-size: 2.2rem;
  }

  .bb-about-hero-desc {
    font-size: 1.05rem;
  }

  .bb-about-hero-stats {
    gap: 10px;
  }

  .bb-about-stat-pill {
    padding: 14px 18px;
    min-width: 90px;
  }

  .bb-about-stat-num {
    font-size: 1.4rem;
  }

  .bb-about-mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bb-about-mission,
  .bb-about-story,
  .bb-about-values,
  .bb-about-team,
  .bb-about-trust,
  .bb-about-global,
  .bb-about-ecosystem,
  .bb-about-cta {
    padding: 60px 0;
  }

  .bb-timeline {
    padding-left: 32px;
  }

  .bb-timeline::before {
    left: 11px;
  }

  .bb-timeline-dot {
    left: -28px;
    width: 14px;
    height: 14px;
  }

  .bb-timeline-dot-inner {
    width: 4px;
    height: 4px;
  }

  .bb-timeline-content {
    padding: 18px 20px;
  }

  .bb-about-values-grid {
    grid-template-columns: 1fr;
  }

  .bb-about-team-grid {
    grid-template-columns: 1fr;
  }

  .bb-about-trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bb-about-global-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bb-about-global-visual {
    display: none;
  }

  .bb-about-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bb-about-cta-inner {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .bb-about-cta-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .bb-about-hero-stats {
    gap: 8px;
  }

  .bb-about-stat-pill {
    padding: 12px 14px;
    min-width: 80px;
  }

  .bb-about-stat-num {
    font-size: 1.2rem;
  }

  .bb-about-stat-label {
    font-size: 0.65rem;
  }

  .bb-about-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .bb-about-eco-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .bb-about-eco-arrow {
    display: none;
  }
}
/* --- Styles from axiom.php --- */

/* ── Axiom page extras ── */

/* Architecture diagram styles */
.ax-arch-wrap {
    background: #0b1728;
    border-radius: 20px;
    padding: 36px 32px;
    overflow-x: auto;
}
.ax-arch-wrap svg { width: 100%; height: auto; display: block; }

/* Feature grid */
.ax-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 900px) {
    .ax-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .ax-pdf-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
    .ax-feature-grid { grid-template-columns: 1fr; }
    .ax-pdf-grid { grid-template-columns: 1fr !important; }
}

/* Challenge stat cards */
.ax-stat-card {
    border-radius: 16px;
    padding: 26px 22px;
    border: 1px solid rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
}
.ax-stat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

/* Auth method pills */
.ax-auth-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.ax-auth-pill {
    background: #f0f4ff;
    border: 1px solid #c7d7ff;
    color: #1044b4;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}


/* ── Datasheet card — styled to match axiomprotect.com Quick Read Literature ── */
.ax-ds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    justify-content: center;  
    align-items: start;      
    max-width: 1200px;        
    margin: 0 auto;           
}
@media (max-width: 1100px) { .ax-ds-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px)  { .ax-ds-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .ax-ds-grid { grid-template-columns: repeat(2, 1fr); } }

.ax-ds-card {
    display: flex;               /* Use flex layout */
    flex-direction: column;      /* Stack content vertically */
justify-content: center;
    align-items: center;         /* Center horizontally */
    height: 320px;               /* Fixed height for all cards (adjust as needed) */
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ax-ds-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(16,68,180,0.15);
}

/* The document cover — mimics the real PDF cover exactly */
.ax-ds-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;        /* portrait A4-ish ratio */
    overflow: hidden;
    background: white;
}

/* BlueBricks branded top bar */
.ax-ds-cover-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 22%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6px 8px 4px;
    z-index: 3;
}
.ax-ds-cover-logo {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: white;
    opacity: 0.92;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.ax-ds-cover-logo span { color: #2cb424; }
.ax-ds-cover-product-tag {
    font-size: 0.52rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.06em;
}
.ax-ds-cover-title-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 7px 8px 6px;
    z-index: 3;
}
.ax-ds-cover-title-bar h4 {
    font-size: 0.62rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.ax-ds-cover-title-bar p {
    font-size: 0.5rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.4;
}

/* Background image area */
.ax-ds-cover-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    z-index: 1;
}
/* Gradient overlay so text is readable */
.ax-ds-cover-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* The inner "content preview" area (white section, bottom half) */
.ax-ds-cover-body {
    position: absolute;
    left: 0; right: 0; bottom: 28%;
    top: 38%;
    background: white;
    z-index: 3;
    padding: 5px 7px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ax-ds-line         { height: 4px; border-radius: 2px; background: #e2e8f0; margin-bottom: 2px; }
.ax-ds-line.dk      { background: #94a3b8; width: 85%; }
.ax-ds-line.md      { background: #cbd5e1; width: 65%; }
.ax-ds-line.sm      { background: #e2e8f0; width: 45%; }
.ax-ds-stat-row     { display: flex; gap: 4px; margin-top: 4px; }
.ax-ds-stat         { flex: 1; background: #f1f5f9; border-radius: 3px; padding: 3px 4px; }
.ax-ds-stat-num     { font-size: 0.5rem; font-weight: 800; color: #1044b4; line-height: 1; }
.ax-ds-stat-lbl     { font-size: 0.36rem; color: #64748b; line-height: 1.2; margin-top: 1px; }

/* Card footer below the cover */
.ax-ds-footer {
    padding: 9px 10px 10px;
    background: white;
}
.ax-ds-footer-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #1044b4;
    line-height: 1.3;
    margin: 0 0 6px;
    text-align: center;
}
.ax-ds-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 5px 0;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: opacity 0.2s;
}
.ax-ds-footer-btn:hover { opacity: 0.85; }
.ax-ds-footer-btn svg { flex-shrink: 0; }

/* --- Styles from verisnow.php --- */

/* ── Veri5now page extras ── */

/* Platform Module Nav Tabs */
.v5-tab-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top:60px;
    margin-bottom: 48px;
}
.v5-tab-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 2px solid #e2e8f0;
    background: white;
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}
.v5-tab-btn.active,
.v5-tab-btn:hover {
    background: #1044b4;
    border-color: #1044b4;
    color: white;
}

/* Challenge stat cards */
.v5-stat-card {
    border-radius: 16px;
    padding: 26px 22px;
    border: 1px solid rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
}
.v5-stat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

/* Feature grid */
.v5-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 900px) { .v5-feature-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .v5-feature-grid { grid-template-columns: 1fr; } }

/* Module section tabs */
.v5-module-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #000000;
    color:var(--bb-black);
    border-radius: 40px;
    padding: 8px 22px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Auth pills */
.v5-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.v5-pill {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    border: 1px solid;
}

/* Workflow step connector */
.v5-workflow {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 8px;
}
.v5-workflow-step {
    flex: 1;
    min-width: 160px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 16px;
    position: relative;
    text-align: center;
}
.v5-workflow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #1044b4;
    font-weight: 900;
    z-index: 2;
}

/* Architecture diagram */
.v5-arch-wrap {
    background: #0b1728;
    border-radius: 20px;
    padding: 36px 32px;
    overflow-x: auto;
}
.v5-arch-wrap svg { width: 100%; height: auto; display: block; }

/* --- Styles from collabrix.php --- */

/* ── Collabrix page extras ── */

.cx-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 900px) { .cx-feature-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .cx-feature-grid { grid-template-columns: 1fr; } }

.cx-stat-card {
    border-radius: 16px;
    padding: 26px 22px;
    border: 1px solid rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
}
.cx-stat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

.cx-module-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    border-radius: 40px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cx-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.cx-pill {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    border: 1px solid;
}

.cx-arch-wrap {
    background: #0b1728;
    border-radius: 20px;
    padding: 36px 32px;
    overflow-x: auto;
}
.cx-arch-wrap svg { width: 100%; height: auto; display: block; }

/* --- Styles from engage.php --- */
/* --- Styles from passwordless.php --- */
/* --- Styles from validate4u.php --- */
/* --- Styles from about.php --- */
/* --- Styles from blogs.php --- */

.bb-blogs-page .bb-conatiner {
  --bb-blue: #0f3d91;
  --bb-blue-2: #2563eb;
  --bb-green: #12b981;
  --bb-text: #0f172a;
  --bb-muted: #64748b;
  --bb-border: rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 200px 100px;
  background: linear-gradient(160deg, var(--bb-off) 0%, var(--bb-lavender) 60%, white 100%);
}
.bb-blogs-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 38px 24px 80px;
}
.bb-blogs-hero {
  position: relative;
  overflow: hidden;
  padding: 34px;
}
.bb-blogs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--bb-blue);
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.12);
}
.bb-blogs-title {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--bb-text);
}
.bb-blogs-title .highlight { color: var(--bb-blue-2); }
.bb-blogs-sub {
  max-width: 760px;
  margin: 0;
  color: var(--bb-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.bb-blogs-topbar {
  display: grid;
  grid-template-rows: 1.1fr .9fr;
  gap: 18px;
  margin-top: 28px;
}
.bb-search-box,
.bb-category-box {
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.08);
  padding: 14px;
}
.bb-search-box input {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.08);
  padding: 0 16px;
  font-size: 15px;
}
.bb-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bb-cat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.bb-cat-pill:hover, .bb-cat-pill.active {
    background: var(--bb-blue);
    color: #fff;
    border-color: var(--bb-blue);
}
.bb-blogs-featured {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  margin-top: 28px;
}
.bb-feature-card,
.bb-side-stack-card,
.bb-blog-card,
.bb-subscribe-card {
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  box-shadow: 0 18px 46px rgba(15,23,42,.07);
}
.bb-feature-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bb-feature-media {
  min-height: 290px;
  background: linear-gradient(135deg, #0f3d91, #2563eb 58%, #12b981);
  position: relative;
  background-size: cover;
  background-position: center;
}
.bb-feature-media::after {
  content: "Identity • Security • Digital Trust";
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}
.bb-feature-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bb-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.bb-meta-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  color: var(--bb-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.bb-meta-time {
  color: var(--bb-muted);
  font-size: 13px;
  font-weight: 600;
}
.bb-feature-title,
.bb-blog-title,
.bb-side-title {
  margin: 0 0 12px;
  line-height: 1.3;
  color: var(--bb-text);
}
.bb-blog-title { font-size: 1.2rem; }
.bb-side-title { font-size: 1.05rem; }
.bb-feature-text,
.bb-blog-text,
.bb-side-text {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.75;
  font-size: 15px;
}
.bb-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  text-decoration: none;
  color: var(--bb-blue-2);
  font-weight: 700;
}
.bb-side-stack {
  display: grid;
  gap: 18px;
}
.bb-side-stack-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.bb-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.bb-blog-card { 
  overflow: hidden; 
  display: flex;
  flex-direction: column;
}
.bb-blog-thumb {
  min-height: 190px;
  background: linear-gradient(135deg, rgba(15,61,145,.95), rgba(37,99,235,.75));
  background-size: cover;
  background-position: center;
}
.bb-blog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bb-subscribe-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px;
  margin-top: 28px;
}
.bb-subscribe-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}
.bb-subscribe-card p {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.7;
}
.bb-subscribe-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bb-subscribe-actions input {
  min-width: 260px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  padding: 0 18px;
  font-size: 15px;
}
.bb-subscribe-actions button {
  min-height: 52px;
  border: none;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--bb-blue), var(--bb-blue-2));
  cursor: pointer;
}
@media (max-width: 1100px) {
  .bb-blogs-topbar,
  .bb-blogs-featured,
  .bb-subscribe-card { grid-template-columns: 1fr; }
  .bb-blogs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .bb-blogs-wrap { padding: 24px 0 60px; }
  .bb-blogs-hero { padding: 16px 0; border-radius: 0; }
  .bb-blogs-grid { grid-template-columns: 1fr; }
  .bb-search-box form { flex-direction: column; }
  .bb-search-box input { width: 100%; }
  .bb-search-box button { width: 100%; }
  .bb-subscribe-actions input { min-width: 100%; width: 100%; }
  .bb-feature-body, .bb-blog-body, .bb-side-stack-card, .bb-subscribe-card { padding: 16px; }
  .bb-feature-card, .bb-blog-card, .bb-subscribe-card, .bb-side-stack-card { border-radius: 12px; }
  .bb-search-box, .bb-category-box { border-radius: 14px; padding: 12px; }
}

/* --- Styles from webinars.php --- */

/* Webinars Page — mirrors blogs.php design tokens exactly */
.bb-blogs-page .bb-container,
.bb-webinars-wrap {
  --bb-blue: #1044b4;
  --bb-blue-2: #2563eb;
  --bb-green: #2cb424;
  --bb-text: #0f172a;
  --bb-muted: #64748b;
  --bb-border: rgba(15, 23, 42, 0.08);
}
.bb-webinars-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 38px 24px 80px;
}
.bb-webinars-hero {
  position: relative;
  overflow: hidden;
  padding: 34px;
}
.bb-webinars-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--bb-blue);
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.12);
}
.bb-webinars-title {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--bb-text);
}
.bb-webinars-title .highlight { color: var(--bb-blue-2); }
.bb-webinars-sub {
  max-width: 760px;
  margin: 0;
  color: var(--bb-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Search + Filter — same as blogs */
.bb-webinars-topbar {
  display: grid;
  grid-template-rows: 1.1fr .9fr;
  gap: 1px; 
   margin-top: 28px;
  
}



.bb-category-box {
  border-radius: 20px;
   background: rgba(255,255,255,.9); 
  border: 1px solid rgba(15,23,42,.08);
  padding: 14px; 
}



/* Feature card — same as blogs */
.bb-webinars-featured {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  margin-top: 28px;
}
.bb-feature-card,
.bb-side-stack-card,
.bb-webinar-card {
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  box-shadow: 0 18px 46px rgba(15,23,42,.07);
}
.bb-feature-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bb-feature-media {
  min-height: 290px;
  background: linear-gradient(135deg, #0f3d91, #2563eb 58%, #12b981);
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Play button overlay on media */
.bb-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,31,61,.22);
  transition: background .2s;
}
.bb-feature-card:hover .bb-play-overlay { background: rgba(10,31,61,.38); }
.bb-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform .2s;
}
.bb-feature-card:hover .bb-play-btn { transform: scale(1.1); }

.bb-feature-media::after {
  content: attr(data-label);
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}
.bb-feature-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bb-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.bb-meta-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  color: var(--bb-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.bb-meta-time {
  color: var(--bb-muted);
  font-size: 13px;
  font-weight: 600;
}
.bb-meta-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(44,180,36,.08);
  color: #2cb424;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.bb-side-title { margin: 0 0 12px; line-height: 1.3; color: var(--bb-text); font-size: 1.05rem; }
.bb-webinar-title { margin: 0 0 12px; line-height: 1.3; color: var(--bb-text); font-size: 1.2rem; }
.bb-feature-text,
.bb-webinar-text,
.bb-side-text { margin: 0; color: var(--bb-muted); line-height: 1.75; font-size: 15px; }
.bb-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  text-decoration: none;
  color: var(--bb-blue-2);
  font-weight: 700;
}
.bb-side-stack { display: grid; gap: 18px; }
.bb-side-stack-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.bb-side-media {
  min-height: 130px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15,61,145,.95), rgba(37,99,235,.75));
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 14px;
  overflow: hidden;
}
.bb-side-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-side-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

/* Grid */
.bb-webinars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.bb-webinar-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bb-webinar-thumb {
  min-height: 190px;
  background: linear-gradient(135deg, rgba(15,61,145,.95), rgba(37,99,235,.75));
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.bb-grid-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,31,61,.18);
  transition: background .2s;
}
.bb-webinar-card:hover .bb-grid-play { background: rgba(10,31,61,.34); }
.bb-grid-play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .2s;
}
.bb-webinar-card:hover .bb-grid-play-btn { transform: scale(1.08); }
.bb-webinar-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Presenter meta */
.bb-presenter-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,.06);
}
.bb-presenter-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1044b4, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.bb-presenter-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--bb-text);
}

/* Empty state */
.bb-empty-state {
  text-align: center;
  padding: 80px 24px;
  background: rgba(255,255,255,.8);
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.06);
  margin-top: 28px;
}
.bb-empty-state .empty-icon { font-size: 3rem; margin-bottom: 16px; }
.bb-empty-state h3 { font-size: 1.4rem; color: var(--bb-text); margin-bottom: 8px; }
.bb-empty-state p { color: var(--bb-muted); line-height: 1.7; }

/* Stats bar */
.bb-resources-stat-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.bb-resources-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--bb-black);
  font-weight: 500;
}
.bb-resources-stat strong { color: var(--bb-black); font-weight: 700; }

@media (max-width: 1100px) {
  .bb-webinars-topbar,
  .bb-webinars-featured { grid-template-columns: 1fr; }
  .bb-webinars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .bb-webinars-wrap { padding: 24px 16px 60px; }
  .bb-webinars-hero { padding: 16px 0; }
  .bb-webinars-grid { grid-template-columns: 1fr; }
  .bb-feature-body, .bb-webinar-body, .bb-side-stack-card { padding: 16px; }
  .bb-feature-card, .bb-webinar-card, .bb-side-stack-card { border-radius: 16px; }
}

/* --- Styles from datasheets.php --- */

/* Datasheets Page — mirrors blogs.php / webinars.php design tokens */
.bb-datasheets-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 38px 24px 80px;
}
.bb-datasheets-hero {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

/* Feature cards — same radii, shadow, border as blogs */
.bb-ds-feature-card,
.bb-ds-side-card,
.bb-ds-card {
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  box-shadow: 0 18px 46px rgba(15,23,42,.07);
}
.bb-ds-feature-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* PDF cover media block */
.bb-ds-cover {
  min-height: 290px;
  background: linear-gradient(135deg, #0f3d91 0%, #1d4ed8 50%, #1044b4 100%);
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-ds-cover-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
}
.bb-ds-cover-icon .pdf-icon {
  width: 72px;
  height: 80px;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 12px 12px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  backdrop-filter: blur(8px);
  position: relative;
}
.bb-ds-cover-icon .pdf-icon::before {
  content: 'PDF';
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: #dc2626;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px 0 4px 0;
  letter-spacing: .04em;
}
.bb-ds-cover-icon .pdf-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .85;
}
.bb-ds-cover-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;      
  align-items: center;       
  gap: 6px;            
}
.bb-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  margin-bottom: 8px;
}
.bb-ds-meta-tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: #0041ff0f;
  border: 1px solid #1044b4;
  color: #1044b4;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.bb-ds-fileinfo {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(220,38,38,.07);
  border: 1px solid #dc2626;
  color: #dc2626;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.bb-ds-product-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #4100ff0f;
  border: 1px solid #7c3aed;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.bb-meta-time {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(217,119,6,.07);
  border: 1px solid #d97706;
  color: #d97706;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.bb-ds-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bb-ds-title {
  margin: 0 0 12px;
  line-height: 1.3;
  color: #0f172a;
}
.bb-ds-feature-title { font-size: 1.8rem; }
.bb-ds-grid-title { font-size: 1.2rem; }
.bb-ds-side-title { font-size: 1.05rem; }
.bb-ds-text {
  margin: 0;
  color: #64748b;
  line-height: 1.75;
  font-size: 15px;
}
.bb-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #1044b4, #2563eb);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  width: fit-content;
}
.bb-download-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,68,180,.35); color: #fff; }
.bb-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  text-decoration: none;
  color: #2563eb;
  font-weight: 700;
}

/* Featured grid */
.bb-ds-featured {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  margin-top: 28px;
}
.bb-ds-side-stack { display: grid; gap: 18px; }
.bb-ds-side-card { padding: 20px; display: flex; flex-direction: column; }
.bb-ds-side-cover {
  min-height: 110px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15,61,145,.95), rgba(37,99,235,.75));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}
.bb-ds-side-pdf-icon {
  width: 46px;
  height: 50px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  position: relative;
}
.bb-ds-side-pdf-icon::before {
  content: 'PDF';
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: #dc2626;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px 0 3px 0;
}

/* Grid cards */
.bb-ds-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.bb-ds-card { overflow: hidden; display: flex; flex-direction: column; }
.bb-ds-thumb {
  min-height: 190px;
  background: linear-gradient(135deg, rgba(15,61,145,.95), rgba(37,99,235,.75));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-ds-thumb-icon {
  width: 60px;
  height: 68px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  position: relative;
}
.bb-ds-thumb-icon::before {
  content: 'PDF';
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: #dc2626;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px 0 4px 0;
  letter-spacing: .04em;
}
.bb-ds-body-grid { padding: 20px; display: flex; flex-direction: column; flex: 1; }

/* Topbar — same as blogs/webinars */
.bb-ds-topbar { display: grid; grid-template-rows: 1.1fr .9fr; gap: 18px; margin-top: 28px; }

.bb-search-box,
.bb-category-box {
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.08);
  padding: 14px;
}
.bb-search-box input {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.08);
  padding: 0 16px;
  font-size: 15px;
}
.bb-cat-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.bb-cat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}
.bb-cat-pill:hover, .bb-cat-pill.active {
  background: #1044b4;
  color: #fff;
  border-color: #1044b4;
}

/* Empty state */
.bb-empty-state {
  text-align: center; padding: 80px 24px;
  background: rgba(255,255,255,.8); border-radius: 24px;
  border: 1px solid rgba(15,23,42,.06); margin-top: 28px;
}

@media (max-width: 1100px) {
  .bb-ds-topbar, .bb-ds-featured { grid-template-columns: 1fr; }
  .bb-ds-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .bb-datasheets-wrap { padding: 24px 16px 60px; }
  .bb-datasheets-hero { padding: 16px 0; }
  .bb-ds-grid { grid-template-columns: 1fr; }
  .bb-ds-body, .bb-ds-side-card, .bb-ds-body-grid { padding: 16px; }
  .bb-ds-feature-card, .bb-ds-card, .bb-ds-side-card { border-radius: 16px; }
}

/* --- Styles from use-cases.php --- */

/* Use Cases — mirrors blogs.php design exactly */
.bb-uc-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 38px 24px 80px;
}
.bb-uc-hero { position: relative; overflow: hidden; padding: 34px; }

/* Cards */
.bb-uc-feature-card,
.bb-uc-side-card,
.bb-uc-card {
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  box-shadow: 0 18px 46px rgba(15,23,42,.07);
}
.bb-uc-feature-card { overflow: hidden; display: flex; flex-direction: column; }

/* Cover media — styled with industry gradient */
.bb-uc-cover {
  min-height: 290px;
  background: linear-gradient(135deg, #0a1f3d 0%, #1044b4 50%, #2563eb 100%);
  background-size: cover;
  background-position: center;
  position: relative;
}
.bb-uc-cover::after {
  /* content: '🏆 Success Story'; */
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}
.bb-uc-industry-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(44,180,36,.85);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  backdrop-filter: blur(6px);
}

/* Metrics row inside card */
.bb-uc-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,.06);
}
.bb-uc-metric {
  flex: 1;
  min-width: 80px;
  background: linear-gradient(135deg, rgba(16,68,180,.06), rgba(37,99,235,.04));
  border: 1px solid rgba(16,68,180,.1);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
}
.bb-uc-metric-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1044b4;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.bb-uc-metric-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-top: 3px;
}

/* Client badge */
.bb-uc-client-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,.05);
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(15,23,42,.08);
}

/* Industry tag */
.bb-uc-industry-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(44,180,36,.08);
  color: #2cb424;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Meta row, title, text shared */
.bb-meta-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 12px; }
.bb-meta-tag { padding: 7px 12px; border-radius: 999px; background: rgba(37,99,235,.08); color: #1044b4; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.bb-meta-time { color: #64748b; font-size: 13px; font-weight: 600; }
.bb-uc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.bb-uc-feature-title { font-size: 1.8rem; margin: 0 0 12px; line-height: 1.3; color: #0f172a; }
.bb-uc-side-title { font-size: 1.05rem; margin: 0 0 12px; line-height: 1.3; color: #0f172a; }
.bb-uc-grid-title { font-size: 1.2rem; margin: 0 0 12px; line-height: 1.3; color: #0f172a; }
.bb-uc-text { margin: 0; color: #64748b; line-height: 1.75; font-size: 15px; }
.bb-read-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; text-decoration: none; color: #2563eb; font-weight: 700; }

/* Featured grid */
.bb-uc-featured { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; margin-top: 28px; }
.bb-uc-side-stack { display: grid; gap: 18px; }
.bb-uc-side-card { padding: 20px; display: flex; flex-direction: column; }
.bb-uc-side-cover {
  min-height: 120px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10,31,61,.95), rgba(16,68,180,.75));
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

/* Main grid */
.bb-uc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 28px; }
.bb-uc-card { overflow: hidden; display: flex; flex-direction: column; }
.bb-uc-thumb {
  min-height: 190px;
  background: linear-gradient(135deg, rgba(10,31,61,.95), rgba(16,68,180,.75));
  background-size: cover;
  background-position: center;
  position: relative;
}
.bb-uc-body-grid { padding: 20px; display: flex; flex-direction: column; flex: 1; }

/* Topbar */
.bb-uc-topbar { display: grid; grid-template-rows: 1.1fr .9fr; gap: 18px; margin-top: 28px; }
.bb-category-box {
  border-radius: 20px;
   background: rgba(255,255,255,.9); 
  border: 1px solid rgba(15,23,42,.08);
  padding: 14px;
}
/* Empty state */
.bb-empty-state { text-align: center; padding: 80px 24px; background: rgba(255,255,255,.8); border-radius: 24px; border: 1px solid rgba(15,23,42,.06); margin-top: 28px; }

@media (max-width: 1100px) {
  .bb-uc-topbar, .bb-uc-featured { grid-template-columns: 1fr; }
  .bb-uc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .bb-uc-wrap { padding: 24px 16px 60px; }
  .bb-uc-hero { padding: 16px 0; }
  .bb-uc-grid { grid-template-columns: 1fr; }
  .bb-uc-body, .bb-uc-side-card, .bb-uc-body-grid { padding: 16px; }
  .bb-uc-feature-card, .bb-uc-card, .bb-uc-side-card { border-radius: 16px; }
}

/* ============================================================
   TESTIMONIALS LAYOUTS
   ============================================================ */

/* Single Testimonial - Full Width */
.bb-testimonials-single {
  max-width: 800px;
  margin: 0 auto;
}

.bb-testi-card-large {
  padding: 48px;
  text-align: center;
}

.bb-testi-card-large .bb-testi-quote {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bb-testi-card-large .bb-testi-author {
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.bb-testi-card-large .bb-testi-avatar-wrap {
  flex-direction: column;
  align-items: center;
}

.bb-testi-card-large .bb-testi-avatar-img,
.bb-testi-card-large .bb-testi-avatar-fallback {
  width: 80px;
  height: 80px;
}

.bb-testi-card-large .bb-testi-avatar-fallback span {
  font-size: 2rem;
}

.bb-testi-card-large .bb-testi-info {
  text-align: center;
}

.bb-testi-card-large .bb-testi-name {
  font-size: 1.1rem;
}

.bb-testi-card-large .bb-testi-org {
  margin-left: 0;
  margin-top: 4px;
}

/* Two Testimonials - Side by Side Grid */
.bb-testimonials-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.bb-testimonials-grid-two .bb-testi-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bb-testimonials-grid-two .bb-testi-quote {
  flex: 1;
}

/* ============================================================
   TESTIMONIALS SLIDER (3 visible at a time)
   ============================================================ */
.bb-testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.bb-testimonials-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.bb-testimonials-slider-multiple {
  width: 100%;
}

.bb-testi-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 12px;
}

.bb-testi-slide-multiple {
  flex: 0 0 33.333%;
  width: 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
}

.bb-testi-slide-multiple .bb-testi-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bb-testi-slide-multiple .bb-testi-quote {
  flex: 1;
}

/* Avatar Styles */
.bb-testi-avatar-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bb-testi-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bb-border);
  flex-shrink: 0;
}

.bb-testi-avatar-fallback {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bb-testi-avatar-fallback span {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.bb-testi-info {
  flex: 1;
}

/* Navigation Arrows */
.bb-testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--bb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--bb-shadow);
  color: var(--bb-dark);
  z-index: 10;
}

.bb-testi-nav:hover {
  background: var(--bb-primary);
  color: white;
  border-color: var(--bb-primary);
  transform: translateY(-50%) scale(1.05);
}

.bb-testi-prev {
  left: 0px;
}

.bb-testi-next {
  right: -0px;
}

/* Dots Navigation */
.bb-testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.bb-testi-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--bb-border);
  background: white;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.bb-testi-dot:hover {
  border-color: var(--bb-primary);
  transform: scale(1.1);
}

.bb-testi-dot.active {
  background: var(--bb-primary);
  border-color: var(--bb-primary);
  transform: scale(1.15);
}

/* ============================================================
   TESTIMONIALS MOBILE RESPONSIVE
   ============================================================ */

/* Tablet adjustments */
@media (max-width: 1024px) {
  .bb-testimonials-slider-wrapper {
    padding: 0 45px;
  }
  
  .bb-testi-slide-multiple {
    flex: 0 0 50%;
    width: 50%;
    padding: 0 10px;
  }
  
  .bb-testi-nav {
    width: 36px;
    height: 36px;
  }
  
  .bb-testi-prev {
    left: 0px;
  }
  
  .bb-testi-next {
    right: 0px;
  }
}

@media (max-width: 768px) {
  /* Single testimonial mobile */
  .bb-testi-card-large {
    padding: 32px 20px;
  }
  
  .bb-testi-card-large .bb-testi-quote {
    font-size: 1.1rem;
  }
  
  .bb-testi-card-large .bb-testi-avatar-img,
  .bb-testi-card-large .bb-testi-avatar-fallback {
    width: 64px;
    height: 64px;
  }
  
  /* Two column becomes single on mobile */
  .bb-testimonials-grid-two {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 8px;
  }
  
  /* Slider mobile fixes */
  .bb-testimonials-slider-wrapper {
    padding: 0 40px;
    overflow: hidden; /* Reverted to hidden to prevent page-level horizontal scroll */
  }
  
  .bb-testimonials-slider {
    width: 100%;
  }
  
  .bb-testi-slide {
    padding: 0 6px;
  }
  
  .bb-testi-slide-multiple {
    flex: 0 0 100%;
    width: 100%;
    min-width: auto;
    max-width: 100%;
    padding: 0 6px;
  }
  
  .bb-testi-slide-multiple .bb-testi-card {
    width: 100%;
    max-width: 100%;
  }
  
  .bb-testi-nav {
    width: 36px;
    height: 36px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  
  .bb-testi-prev {
    left: 0;
  }
  
  .bb-testi-next {
    right: 0;
  }
  
  .bb-testi-card {
    padding: 24px 20px;
    min-width: 0;
  }
  
  .bb-testi-avatar-img,
  .bb-testi-avatar-fallback {
    width: 48px;
    height: 48px;
  }
  
  .bb-testi-avatar-fallback span {
    font-size: 1.1rem;
  }
  
  .bb-testi-info {
    min-width: 0;
    overflow: hidden;
  }
  
  .bb-testi-name {
    font-size: 0.9rem;
  }
  
  .bb-testi-role,
  .bb-testi-org {
    font-size: 0.75rem;
  }
  
  .bb-testi-quote {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .bb-testi-author {
    gap: 12px;
  }
  
  .bb-testi-dots {
    margin-top: 16px;
    margin-bottom: 8px;
  }
  
  .bb-testi-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .bb-testimonials {
    padding: 40px 0;
  }
  
  .bb-testi-card {
    padding: 20px;
  }
  
  .bb-testi-card-large {
    padding: 24px 16px;
  }
  
  .bb-testi-author {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .bb-testi-org {
    width: 100%;
    margin-left: 0;
    margin-top: 2px;
    font-size: 0.75rem;
    color: var(--bb-muted);
  }
  
  .bb-testi-card-large .bb-testi-org {
    margin-left: 0;
  }
}

.bb-features-card-style {
  /* background: white; */
  border: 1px solid var(--bb-border);
  border-radius: 16px;
  /* padding: 26px; */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.bb-features-card-style:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16, 68, 180, 0.1);
}

/* Architecture diagram icons */
.bb-arch-icon-sm svg {
  width: 12px;
  height: 12px;
  color: #1e3a5f;
}

.bb-arch-icon-green svg {
  width: 14px;
  height: 14px;
  color: var(--bb-green);
}

/* challenges*/
.bb-challenges-layout{
        display:grid;
        grid-template-columns:minmax(280px, 0.9fr) minmax(0, 1.35fr);
        gap:32px;
        align-items:center;
    }

    .bb-challenges-left{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
        max-width:520px;
        margin:0 auto;
    }

    .bb-challenges-right{
        display:grid;
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:12px;
    }

    .bb-challenge-card{
        background:#fff;
        border:1px solid rgba(37,99,235,0.12);
        border-radius:16px;
        padding:12px 12px 10px;
        box-shadow:0 4px 14px rgba(16,68,180,0.05);
        display:flex;
        flex-direction:column;
        gap:8px;
        position:relative;
        min-height:132px;
    }

    .bb-challenge-card::before{
        content:"";
        position:absolute;
        left:0;
        top:0;
        bottom:0;
        width:4px;
        border-radius:16px 0 0 16px;
    }

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

    .bb-challenge-stat{
        font-weight:800;
        color:var(--bb-bright);
        line-height:1;
    }

    .bb-challenge-stat strong{
        font-size:1.6rem;
        line-height:1;
    }

    .bb-challenge-stat span{
        font-size:.9rem;
        margin-left:2px;
    }

    .bb-challenge-icon > div{
        width:34px !important;
        height:34px !important;
        min-width:34px !important;
        min-height:34px !important;
        border-radius:10px !important;
    }

    .bb-challenge-title{
        font-size:.9rem;
        font-weight:800;
        line-height:1.25;
        color:var(--bb-dark);
        margin:0;
    }

    .bb-challenge-desc{
        font-size:.8rem;
        color:var(--bb-black);
        line-height:1.35;
        margin:0;
    }

    @media (max-width:1100px){
        .bb-challenges-layout{
            grid-template-columns:1fr;
            gap:24px;
        }

        .bb-challenges-left{
            max-width:640px;
        }
    }

    @media (max-width:900px){
        .bb-challenges-right{
            grid-template-columns:repeat(2,minmax(0,1fr));
        }
    }

    @media (max-width:640px){
        .bb-challenges-right{
            grid-template-columns:1fr;
            gap:10px;
        }

        .bb-challenge-card{
            min-height:auto;
        }
    }

  /* ===== ARCHITECTURE (GLOBAL - SHARED) ===== */

/* ===== ARCHITECTURE (GLOBAL - SHARED) ===== */

.cx-arch-diagram {
  background: #ffffff;
  border: 1px solid #dbe7fb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(16, 68, 180, 0.04);
}

.cx-arch-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: 20px;
  align-items: stretch;
}

.cx-arch-side,
.cx-arch-core {
  min-width: 0;
}

.cx-arch-panel {
  border: 1px solid #d5e3fb;
  border-radius: 18px;
  padding: 16px;
  background: #f6faff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.cx-arch-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #1044b4;
  margin-bottom: 12px;
}

.cx-arch-stack {
  display: grid;
  gap: 10px;
}

.cx-arch-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border: 1px solid #d9e5fa;
  border-radius: 12px;
  background: #ffffff;
}

.cx-arch-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.cx-arch-item-sub {
  font-size: 0.75rem;
  color: #64748b;
}

/* CORE */

.cx-core-wrap {
  border: 1px solid #cfe0ff;
  border-radius: 20px;
  padding: 16px;
  background: #fcfdff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cx-core-title {
  text-align: center;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f172a;
}

.cx-core-sections {
  display: grid;
  gap: 14px;
}

.cx-core-section {
  margin-bottom: 14px;
}

.cx-core-section-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #1044b4;
  margin-bottom: 8px;
}

.cx-core-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.cx-core-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cx-core-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cx-core-card {
  border: 1px solid #d9e5fa;
  border-radius: 12px;
  padding: 10px;
  background: #ffffff;
}

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

.cx-core-card-sub {
  font-size: 0.72rem;
  color: #64748b;
}

.cx-chip-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid #d9e5fa;
  border-radius: 12px;
  background: #ffffff;
}

.cx-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  color: #1044b4;
}

.cx-chip-green {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}

.cx-deployment-box {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid #d9e5fa;
  background: #eef5ff;
  padding: 14px;
}

.cx-deployment-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.cx-deployment-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d9e5fa;
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
}

.cx-deployment-row i {
  width: 16px;
  height: 16px;
  color: #1044b4;
  flex-shrink: 0;
}

/* MOBILE SHRINK */

.cx-arch-wrapper {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .cx-core-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cx-arch-wrapper {
    overflow-x: auto;
  }

  .cx-arch-diagram {
    transform: scale(0.68);
    transform-origin: top center;
    width: 145%;
  }

  .cx-core-grid-5,
  .cx-core-grid-4,
  .cx-core-grid-3 {
    grid-template-columns: 1fr;
  }
}
/* Empty state */
.bb-empty-state { text-align: center; padding: 20px 24px; background: rgba(255,255,255,.8); border-radius: 24px; border: 1px solid rgba(15,23,42,.15); margin-top: 28px; }
