@charset "utf-8";
/* CSS Document */

/*--------------------------------------------  */
  /* --- SCOPED ENCAPSULATION --- */
.beeq-marketing-scope {
  
  --bg-card: #2f2c2c;
  --bg-card-border: #2f2c2c;
  --accent-color: #bdff00; /* Neon Lime Green from your asset image */
  --text-primary: #ffffff;
  --text-muted: #9fa4a6;
  
  background-color:#f8f9f7;
  color: var(--text-primary);
  
  padding: 60px 20px;
  box-sizing: border-box;
}

.beeq-marketing-scope *, 
.beeq-marketing-scope *::before, 
.beeq-marketing-scope *::after {
  box-sizing: border-box;
}

.beeq-perf-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* --- TOP SECTION SPLIT --- */
.beeq-top-row {
  display: grid;
  grid-template-columns: 1fr ;
  
  margin-bottom: 15px;
  align-items: start;
}

.beeq-main-header {
  padding-right: 20px;
	text-align: center;
}

.beeq-pre-title {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 15px;
  position: relative;
}

.beeq-pre-title::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--text-muted);
  vertical-align: middle;
  margin-left: 10px;
}

.beeq-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 25px 0;
  letter-spacing: -0.5px;
	text-transform: uppercase;
}

.beeq-accent {
  color: var(--accent-color);
}

.beeq-description {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

/* --- VERTICAL CARDS (01 - 03) --- */
.beeq-vertical-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* --- CARD DESIGN SYSTEM --- */
.beeq-card {
  border-bottom: 5px solid #bdde35;
  border-radius: 5px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
  text-align: center;
	border: 1px dotted #E3DADA;

}

.beeq-card:hover {
  border-color: rgba(189, 255, 0, 0.3);
}

.beeq-card-number {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #2f2c2c;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.beeq-icon-wrap {
  width: 54px;
  height: 54px;
  background: radial-gradient(circle, #1a1f16 0%, #0d0f10 100%);
  border: 1px solid rgba(189, 255, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.beeq-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.beeq-icon-wrap.bg-circle {
  font-size: 24px;
  font-weight: bold;
}

.beeq-card-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
	color: #000000;
	text-transform: uppercase;
}

.beeq-card-text {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

/* --- MIDDLE GRID CARDS (04 - 07) --- */
.beeq-middle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

/* --- BOTTOM BRAND BAR & STATS --- */
.beeq-bottom-bar {
  background: #2f2c2c;
  border: 1px solid var(--bg-card-border);
  border-radius: 5px;
  padding: 30px;
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 30px;
  align-items: center;
}

.beeq-bar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--bg-card-border);
  padding-right: 20px;
}

.beeq-hex-icon {
  background: var(--accent-color);
  color: #000000;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  flex-shrink: 0;
}

.beeq-hex-icon svg {
  width: 24px;
  height: 24px;
}

.beeq-bar-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px 0;
	color: #bdde35;
	text-transform: uppercase;
}

.beeq-bar-subtitle {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}

.beeq-stat-group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.beeq-stat-item {
  display: flex;
  flex-direction: column;
}

.beeq-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.beeq-stat-label {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.beeq-stat-desc {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.3;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1100px) {
  .beeq-top-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .beeq-main-header {
    padding-right: 0;
	  
  }
  .beeq-bottom-bar {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .beeq-bar-brand {
    border-right: none;
    border-bottom: 1px solid var(--bg-card-border);
    padding-right: 0;
    padding-bottom: 15px;
  }
}

@media (max-width: 900px) {
  .beeq-middle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .beeq-stat-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 650px) {
  .beeq-title {
    font-size: 32px;
  }
  .beeq-vertical-cards {
    grid-template-columns: 1fr;
  }
  .beeq-middle-grid {
    grid-template-columns: 1fr;
  }
  .beeq-stat-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 450px) {
  .beeq-stat-group {
    grid-template-columns: 1fr;
  }
}


/*---------------------------  ------------------------------- */
/* --- Desktop-Only Scoped Sticky CTA --- */
.beeq-desktop-sticky-cta {
    position: fixed;
    bottom: -150px; /* Hidden below viewport initially */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.06), 0 10px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 20px 40px;
    z-index: 9999;
    transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Activated via JavaScript on scroll down */
.beeq-desktop-sticky-cta.is-visible {
    bottom: 25px;
}

/* Structural Layout */
.beeq-desktop-sticky-cta .cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.beeq-desktop-sticky-cta .cta-left-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Custom Headset Icon Ring */
.beeq-desktop-sticky-cta .cta-headset-icon {
    width: 54px;
    height: 54px;
    background: #eefbf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.beeq-desktop-sticky-cta .cta-headset-icon i {
    color: #00d383;
    font-size: 1.35rem;
}

/* Typography Reset & Scoping */
.beeq-desktop-sticky-cta .cta-text h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #121d26;
    margin: 0 0 3px 0;
    line-height: 1.3;
}

.beeq-desktop-sticky-cta .cta-text p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

/* Button Configurations */
.beeq-desktop-sticky-cta .cta-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.beeq-desktop-sticky-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.beeq-desktop-sticky-cta .btn-callback {
    background: #1c1f2a;
    color: #ffffff;
}

.beeq-desktop-sticky-cta .btn-callback:hover {
    background: #2d3244;
}

.beeq-desktop-sticky-cta .btn-whatsapp {
    background: #00d383;
    color: #ffffff;
}

.beeq-desktop-sticky-cta .btn-whatsapp:hover {
    background: #00b871;
}

/* Dynamic Font/Sizing adjustments for smaller laptop layouts */
@media (max-width: 1200px) {
    .beeq-desktop-sticky-cta .cta-text h2 {
        font-size: 1.15rem;
    }
}

/* CRITICAL: Completely hide the bar on tablet and mobile screens */
@media (max-width: 1023px) {
    .beeq-desktop-sticky-cta {
        display: none !important;
    }
}
/*====================================================

Beeq Media Labs Hero
Part 1

====================================================*/

.bml-hero-section{

    position:relative;

    width:100%;

    overflow:hidden;

    background:#ffffff;

    padding:40px 0 0;

    font-family:inherit;

}

.bml-hero-wrapper{

    max-width:1240px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    padding:0 0px;

    position:relative;

}

.bml-hero-content{

    flex:0 0 46%;

    z-index:5;

}

.bml-hero-image{

    flex:0 0 54%;

    position:relative;

}

.bml-hero-image img{

    width:100%;

    display:block;

    border-radius:8px;

    object-fit:cover;

}

/* Tag */

.bml-hero-tag{

    display:inline-block;

    background:#b7d331;

    color:#111;

    font-weight:700;

    font-size:14px;

    padding:10px 18px;

    border-radius:5px;

    margin-bottom:22px;

    text-transform:uppercase;

    letter-spacing:.4px;

}

/* Heading */

.bml-hero-title{

    font-size:30px;

    line-height:1.3;

    font-weight:900;

    color:#111;

    margin:0;

    text-transform:uppercase;

}

.bml-hero-title span{

    display:block;

    color:#111;

}

.bml-hero-title strong{

    display:block;

    color:#9bc420;

    font-weight:900;

}

/* Description */

.bml-hero-description{

    margin-top:28px;

    font-size:18px;

    line-height:26px;

    color:#444;

    max-width:650px;

}

/* Buttons */

.bml-hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

    flex-wrap:wrap;

}

.bml-btn{

    display:flex;

    align-items:center;

    gap:10px;

    padding:10px 10px;

    text-decoration:none;

    border-radius:5px;

    transition:.35s;

    font-weight:500;

}

.bml-btn-icon{

    width:54px;

    height:54px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:8px;

    font-size:22px;

    flex-shrink:0;

}

.bml-btn span{

    display:flex;

    flex-direction:column;

}

.bml-btn span small{

    font-size:15px;

    font-weight:400;

    margin-top:3px;

}

/* Green Button */

.bml-btn-primary{

    background:#a6c32d;

    color:#fff;

}

.bml-btn-primary .bml-btn-icon{

    background:rgba(255,255,255,.18);

}

/* Dark Button */

.bml-btn-dark{

    background:#1b1b1b;

    color:#fff;

}

.bml-btn-dark .bml-btn-icon{

    background:rgba(255,255,255,.08);

}

.bml-btn:hover{

    transform:translateY(-4px);

}

/*================================

Responsive

================================*/

@media(max-width:1200px){

.bml-hero-title{

font-size:58px;

}

}

@media(max-width:992px){

.bml-hero-wrapper{

flex-direction:column;

}

.bml-hero-content,

.bml-hero-image{

flex:0 0 100%;

width:100%;

}

.bml-hero-title{

font-size:50px;

}

.bml-hero-description{

max-width:100%;

}

}

@media(max-width:768px){

.bml-hero-section{

padding-top:30px;

}

.bml-hero-title{

font-size:42px;

}

.bml-hero-description{

font-size:17px;

line-height:1.7;

}

.bml-hero-buttons{

flex-direction:column;

}

.bml-btn{

width:100%;

justify-content:flex-start;

}

}

@media(max-width:480px){

.bml-hero-wrapper{

padding:0 18px;

}

.bml-hero-title{

font-size:34px;

}

.bml-hero-tag{

font-size:12px;

padding:8px 14px;

}

.bml-btn{

padding:15px;

}

.bml-btn-icon{

width:46px;

height:46px;

font-size:18px;

}

}


/*========================================

Floating Card

========================================*/

.bml-floating-card{

    position:absolute;

    right:20px;

    bottom:-1px;

    

    background:#fff;

    border-radius:5px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

    overflow:hidden;

    z-index:20;

}

.bml-stat-item{

    padding:15px 10px;

    text-align:center;

    border-right:1px solid #ececec;

}

.bml-stat-item:last-child{

    border-right:none;

}

.bml-stat-icon{

    width:50px;

    height:50px;

    margin:auto;

    border-radius:50%;

    background:#eef7d4;

    color:#9bc420;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:10px;

}

.bml-stat-item h4{

    margin:0;

    font-size:13px;

    font-weight:800;

    color:#222;
	text-transform: uppercase;

}

.bml-stat-item p{

   margin: 0px;
    line-height: 12px;

    font-size:10px;

    color:#666;

    text-transform:uppercase;

    font-weight:600;

}

/*========================================

USP SECTION

========================================*/

.bml-usp-section{

    background:#111;

    padding:20px 0 20px;

    margin-top:70px;
	border-radius: 5px;

}

.bml-usp-wrapper{

    max-width:1240px;

    margin:auto;

    padding:0 25px;

    display:grid;

    grid-template-columns:280px 1fr;

    gap:40px;

    align-items:center;

}

.bml-usp-title h2{

    color:#fff;

    font-size:32px;

    line-height:1.1;

    margin:0;

    font-weight:900;

    text-transform:uppercase;

}

.bml-usp-title span{

    color:#9bc420;

}

.bml-usp-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:10px;

}

.bml-usp-box{

    color:#fff;

    text-align:center;

    padding:10px 10px;

   

    border-radius:5px;

    transition:.3s;

}

.bml-usp-box:hover{

    transform:translateY(-6px);

    background:#1b1b1b;

}

.bml-usp-box i{

    font-size:25px;

    color:#9bc420;

    margin-bottom:10px;

}

.bml-usp-box span{

    display:block;

    font-size:11px;

    line-height:1.6;

    font-weight:300;

}

/*========================================

Responsive

========================================*/

@media(max-width:1200px){

.bml-floating-card{



}

.bml-usp-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:992px){

.bml-floating-card{

position:relative;

right:auto;

bottom:auto;

width:100%;

margin-top:30px;

grid-template-columns:repeat(2,1fr);

}

.bml-usp-wrapper{

grid-template-columns:1fr;

}

.bml-usp-title{

text-align:center;

}

.bml-usp-grid{

grid-template-columns:repeat(2,1fr);

}

.bml-usp-section{

padding-top:70px;

margin-top:40px;

}

}

@media(max-width:768px){

.bml-floating-card{

grid-template-columns:1fr;

}

.bml-stat-item{

border-right:none;

border-bottom:1px solid #eee;

}

.bml-stat-item:last-child{

border-bottom:none;

}

.bml-usp-grid{

grid-template-columns:1fr;

}

.bml-usp-title h2{

font-size:34px;

}

}

@media(max-width:480px){

.bml-floating-card{

border-radius:5px;

}

.bml-stat-item{

padding:15px 10px;

}

.bml-stat-icon{

width:58px;

height:58px;

font-size:24px;

}

.bml-stat-item h4{

font-size:13px;

}

.bml-stat-item p{

font-size:14px;

}

.bml-usp-box{

padding:20px 15px;

}

.bml-usp-box i{

font-size:28px;

}

}


/*======================================================

Beeq Property Lead Section

PART 1

======================================================*/

.bml-pl-section{

    width:100%;

    padding:70px 0;

    background:#f6f6f6;

}

.bml-pl-container{

    max-width:1240px;

    margin:auto;

    

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.bml-pl-card{

    background:#fff;

    border-radius:5px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.bml-pl-card:hover{

    transform:translateY(-5px);

}

.bml-pl-header{

    padding:26px 30px 15px;

}

.bml-pl-header h2{

    margin:0;

    color:#222;

    font-size:22px;

    font-weight:800;

    text-transform:uppercase;

    line-height:1.2;

}

.bml-pl-line{

    width:130px;

    height:4px;

    background:#a9c92d;

    display:block;

    margin-top:12px;

    border-radius:20px;

}

.bml-pl-content{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    padding:10px 30px 35px;

}

.bml-pl-list{

    flex:0 0 65%;

}

.bml-pl-list ul{

    list-style:none;

    padding:0;

    margin:0;

}

.bml-pl-list li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:8px;

    font-size:14px;

    line-height:1.2;

    color:#333;

}

.bml-pl-list li i{

    color:#9bc420;

    font-size:15px;

    

    flex-shrink:0;

}

.bml-pl-graphic{

    flex:0 0 35%;

    text-align:center;
	    padding-right: 3%;

}

.bml-pl-graphic img{

    max-width:100%;

    height:auto;

    display:block;

}

/*============================

Responsive

============================*/

@media(max-width:1200px){

.bml-pl-header h2{

font-size:30px;

}

.bml-pl-list li{

font-size:17px;

}

}

@media(max-width:992px){

.bml-pl-container{

grid-template-columns:1fr;

}

.bml-pl-content{

flex-direction:column;

text-align:center;

}

.bml-pl-list{

width:100%;

}

.bml-pl-list li{

justify-content:flex-start;

text-align:left;

}

.bml-pl-graphic{

width:100%;

margin-top:25px;

}

}

@media(max-width:768px){

.bml-pl-section{

padding:45px 0;

}

.bml-pl-header{

padding:25px;

}

.bml-pl-content{

padding:20px;

}

.bml-pl-header h2{

font-size:26px;

}

.bml-pl-list li{

font-size:16px;

margin-bottom:12px;

}

}

@media(max-width:480px){

.bml-pl-header h2{

font-size:22px;

}

.bml-pl-content{

padding:18px;

}

.bml-pl-list li{

font-size:15px;

gap:10px;

}

.bml-pl-list li i{

font-size:16px;

}

}

/*========================================

PROPERTY SEGMENT GRID

========================================*/

.bml-segment-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

   

    border-left:1px solid #ececec;
	padding: 25px;

}

.bml-segment-item{

    min-height:100px;

    padding:15px 15px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

   

    transition:.35s;

    background:#fff;

}

.bml-segment-item:hover{

    background:#f8fbef;

    transform:translateY(-3px);

}

.bml-segment-item i{

    font-size:20px;

    color:#9bc420;

    margin-bottom:18px;

}

.bml-segment-item span{

    font-size:10px;

    line-height:1.5;

    color:#222;

    font-weight:300;

}

/*=============================

Responsive

==============================*/

@media(max-width:1200px){

.bml-segment-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:992px){

.bml-segment-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.bml-segment-grid{

grid-template-columns:repeat(2,1fr);

}

.bml-segment-item{

min-height:130px;

padding:20px;

}

.bml-segment-item i{

font-size:38px;

}

.bml-segment-item span{

font-size:15px;

}

}

@media(max-width:480px){

.bml-segment-grid{

grid-template-columns:1fr;

}

.bml-segment-item{

min-height:110px;

padding:18px;

}

.bml-segment-item i{

font-size:34px;

margin-bottom:12px;

}

.bml-segment-item span{

font-size:15px;

line-height:1.4;

}

}




/*======================================================

Beeq Media Labs
Real Estate Marketing Services

======================================================*/

.bml-rms-section{

    padding:70px 0;
    background:#ffffff;

}

.bml-rms-container{

    max-width:1240px;
    margin:auto;
    padding:0 10px;

}

.bml-rms-heading{

    text-align:center;
    margin-bottom:35px;

}

.bml-rms-heading h2{

    margin:0;
    font-size:30px;
    font-weight:800;
    text-transform:uppercase;
    color:#222;
    line-height:1.2;

}

.bml-rms-heading span{

    color:#9bc420;

}

/*=========================
GRID
=========================*/

.bml-rms-grid{

    display:grid;
    grid-template-columns:repeat(9,1fr);
    gap:5px;

}

.bml-rms-card{

    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:5px;
    padding:10px 5px;
    text-align:center;
    transition:.35s;
    box-shadow:0 4px 14px rgba(0,0,0,.05);

}

.bml-rms-card:hover{

    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.10);

}

.bml-rms-icon{

    width:50px;
    height:50px;
    margin:auto  auto 5px;
    display:flex;
    align-items:center;
    justify-content:center;

}

.bml-rms-icon i{

    font-size:32px;
    color:#9bc420;

}

.bml-rms-card h3{

    margin:0;
    font-size:10px;
    line-height:1.6;
    color:#222;
    font-weight:300;

}

/*=========================
BOTTOM BAR
=========================*/

.bml-rms-feature-bar{

    margin-top:22px;
    background:#141414;
    border-radius:5px;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    overflow:hidden;

}

.bml-rms-feature{

    padding:18px 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:#fff;
    border-right:1px solid rgba(255,255,255,.08);

}

.bml-rms-feature:last-child{

    border-right:none;

}

.bml-rms-feature i{

    color:#9bc420;
    font-size:22px;

}

.bml-rms-feature span{

    font-size:12px;
    font-weight:400;

}

/*=========================
TABLET
=========================*/

@media(max-width:1200px){

.bml-rms-grid{

grid-template-columns:repeat(3,1fr);

}

.bml-rms-feature-bar{

grid-template-columns:repeat(3,1fr);

}

}

/*=========================
TABLET SMALL
=========================*/

@media(max-width:768px){

.bml-rms-heading h2{

font-size:32px;

}

.bml-rms-grid{

grid-template-columns:repeat(2,1fr);

}

.bml-rms-feature-bar{

grid-template-columns:repeat(2,1fr);

}

.bml-rms-card{

padding:25px 18px;

}

.bml-rms-card h3{

font-size:16px;

}

}

/*=========================
MOBILE
=========================*/

@media(max-width:480px){

.bml-rms-grid{

grid-template-columns:1fr;

}

.bml-rms-feature-bar{

grid-template-columns:1fr;

}

.bml-rms-feature{

justify-content:flex-start;
padding:16px 20px;

}

.bml-rms-heading h2{

font-size:26px;

}

.bml-rms-icon{

width:60px;
height:60px;

}

.bml-rms-icon i{

font-size:34px;

}

.bml-rms-card{

padding:22px 18px;

}

}


/* Isolated scope to protect your existing project styles */
.beeq-banner-wrapper {
  --beeq-green-dark: #6fa61d;
  --beeq-green-light: #7cbd24;
  --beeq-bg-dark: #111111;
  --beeq-text-dark: #333333;
  --beeq-text-muted: #555555;
   max-width: 1240px;
  margin: 20px auto;
  
  box-sizing: border-box;
}

.beeq-banner-wrapper * {
  box-sizing: border-box;
}

/* --- Top Section Layout --- */
.beeq-top-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-bottom: 20px;
}

.beeq-card {
  border-radius: 5px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.beeq-left-card {
  background-color: #ffffff;
}

.beeq-right-card {
  background-color: var(--beeq-bg-dark);
  color: #ffffff;
}

/* --- Typography --- */
.beeq-title {
  font-size: 22px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--beeq-text-dark);
  letter-spacing: -0.5px;
}

.beeq-title.white-text {
  color: #ffffff;
}

.beeq-highlight-text {
  color: var(--beeq-green-dark);
}

.beeq-brand-text {
  color: var(--beeq-green-light);
}

.beeq-desc {
  font-size: 13px;
  color: var(--beeq-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 85%;
}

/* --- Content & Lists --- */
.beeq-content-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.beeq-content-layout-right {
  display: flex;
  position: relative;
  height: calc(100% - 40px);
}

.beeq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.beeq-list li {
  font-size: 13px;
  
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: var(--beeq-text-dark);
}

.beeq-list.white-text li {
  color: #dddddd;
  font-weight: 500;
}

.beeq-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: var(--beeq-green-light);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  margin-right: 10px;
  font-weight: bold;
  flex-shrink: 0;
}

.beeq-check.green-check {
  background-color: transparent;
  border: 2px solid var(--beeq-green-light);
  color: var(--beeq-green-light);
}

/* --- AI & House Graphics --- */
.beeq-ai-graphic {
  position: relative;
  width: 270px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.beeq-ai-core {
  background-color: var(--beeq-green-light);
  color: white;
  font-weight: bold;
  font-size: 22px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 15px rgba(124, 189, 36, 0.4);
}

.beeq-node {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--beeq-green-light);
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.node-top { top: 0; left: 50%; transform: translateX(-50%); }
.node-right { right: 0; top: 50%; transform: translateY(-50%); }
.node-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-left { left: 0; top: 50%; transform: translateY(-50%); }

.beeq-house-graphic {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 150px;
  height: 150px;
  pointer-events: none;
}

/* --- Bottom CTA Bar Layout --- */
.beeq-cta-bar {
  background: linear-gradient(90deg, var(--beeq-green-dark) 0%, var(--beeq-green-light) 50%, #ffffff 40.1%);
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  gap: 20px;
}

.beeq-cta-left {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  width: 45%;
}

.beeq-headset-icon {
  font-size: 40px;
  opacity: 0.9;
}

.beeq-cta-left h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.beeq-cta-left p {
  margin: 0;
  font-size: 12px;
  opacity: 0.95;
  line-height: 1.4;
}

.beeq-cta-right {
  display: flex;
  gap: 15px;
  width: 55%;
  justify-content: flex-end;
}

/* --- Buttons --- */
.beeq-btn-solid, .beeq-btn-outline {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.beeq-btn-solid {
  background-color: var(--beeq-green-light);
  color: white;
  border: none;
}

.beeq-btn-solid:hover {
  background-color: var(--beeq-green-dark);
}

.beeq-btn-outline {
  background-color: transparent;
  color: #333333;
  border: 1px solid #cccccc;
	background-color: #ffffff;
}

.beeq-btn-outline:hover {
  background-color: #f5f5f5;
  border-color: #999999;
}

.btn-icon {
  font-size: 14px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .beeq-top-section {
    grid-template-columns: 1fr;
  }
  
  .beeq-cta-bar {
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  
  .beeq-cta-left {
    background: linear-gradient(135deg, var(--beeq-green-dark), var(--beeq-green-light));
    width: 100%;
    padding: 20px;
    border-radius: 8px;
  }
  
  .beeq-cta-right {
    width: 100%;
    justify-content: space-between;
  }
  
  .beeq-btn-solid, .beeq-btn-outline {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .beeq-content-layout {
    flex-direction: column-reverse;
    gap: 30px;
  }
  
  .beeq-desc {
    max-width: 100%;
  }

  .beeq-cta-right {
    flex-direction: column;
  }
  
  .beeq-house-graphic {
    opacity: 0.15;
  }
}
/* Isolated container scope */
.beeq-stats-strip-wrapper {
  --beeq-strip-bg: #111111;
  --beeq-green-accent: #7cbd24;
  --beeq-text-white: #ffffff;
  --beeq-text-gray: #b3b3b3;
  --beeq-divider-color: rgba(255, 255, 255, 0.15);
  
  font-family: 'Arial', sans-serif;
  background-color: var(--beeq-strip-bg);
  width: 100%;
  padding: 25px 15px;
  box-sizing: border-box;
}

.beeq-stats-strip-wrapper * {
  box-sizing: border-box;
}

/* Flex Container holding all metrics */
.beeq-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Individual Stat block layout */
.beeq-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
  padding: 0 10px;
  position: relative;
	text-align: center;
}

/* Vertical dividers created using pseudo-elements */
.beeq-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: var(--beeq-divider-color);
}

/* Font styles & Hierarchy */
.beeq-stat-icon {
  font-size: 28px;
  color: var(--beeq-green-accent);
  display: flex;
  align-items: center;
}

.beeq-stat-content {
  display: flex;
  flex-direction: column;
}

.beeq-stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--beeq-green-accent);
  line-height: 1.1;
  margin-bottom: 4px;
}

.beeq-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--beeq-text-white);
  line-height: 1.3;
}

/* --- Responsive Adaptations --- */

/* Tablets / Medium Screens */
@media (max-width: 992px) {
  .beeq-stats-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 0;
  }
  
  .beeq-stat-item {
    flex: none;
    width: 33.33%;
  }
  
  /* Readjust divider structure for 3x2 grid view */
  .beeq-stat-item::after {
    display: none !important;
  }
}

/* Mobile Screens */
@media (max-width: 600px) {
  .beeq-stats-strip-wrapper {
    padding: 30px 20px;
  }
  
  .beeq-stats-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    max-width: 280px; /* Aligns center block nicely on phone viewports */
    margin: 0 auto;
  }
  
  .beeq-stat-item {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
  }
  
  .beeq-stat-number {
    font-size: 22px;
  }
}

.beeq-faq-wrapper {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  max-width: 1240px;
  margin: 40px auto;
  padding: 0 20px;
  color: #333333;
  box-sizing: border-box;
}
.beeq-faq-wrapper * { box-sizing: border-box; }
.beeq-faq-wrapper .faq-header { text-align: center; margin-bottom: 30px; }
.beeq-faq-wrapper .faq-badge { color: #a3d900; font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
.beeq-faq-wrapper .faq-header h2 { font-size: 36px; margin: 10px 0; color: #111111; font-weight: 800; text-transform: uppercase; }
.beeq-faq-wrapper .faq-header p { color: #666666; font-size: 16px; }

.beeq-faq-wrapper .faq-trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}
.beeq-faq-wrapper .badge-item { display: flex; align-items: center; background: #fdfdfd; border: 1px solid #eaeaea; padding: 12px 15px; border-radius: 5px; }
.beeq-faq-wrapper .badge-icon { background: #f4fbd9; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 12px; flex-shrink: 0; }
.beeq-faq-wrapper .badge-text { font-size: 12px; color: #666; line-height: 1.3; }
.beeq-faq-wrapper .badge-text strong { display: block; color: #111; font-size: 13px; }

.beeq-faq-wrapper .faq-main-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }
.beeq-faq-wrapper .faq-sidebar { display: flex; flex-direction: column; gap: 20px; }
.beeq-faq-wrapper .help-card { background: #111111; color: #ffffff; padding: 30px 20px; border-radius: 12px; text-align: center; }
.beeq-faq-wrapper .help-card h3 { font-size: 20px; margin-top: 0; color: #ffffff; }
.beeq-faq-wrapper .help-card h3 span { color: #a3d900; }
.beeq-faq-wrapper .help-card p { font-size: 13px; color: #cccccc; line-height: 1.5; margin: 15px 0 25px 0; }
.beeq-faq-wrapper .btn-consultation { display: block; background: #a3d900; color: #111111; text-decoration: none; font-weight: 700; padding: 12px 10px; border-radius: 5px; font-size: 13px; text-align: center; }

.beeq-faq-wrapper .popular-topics { background: #111111; border-radius: 5px; padding: 20px; }
.beeq-faq-wrapper .popular-topics h4 { color: #fff; margin: 0 0 15px 0; font-size: 15px; border-bottom: 1px solid #222; padding-bottom: 10px; }
.beeq-faq-wrapper .popular-topics ul { list-style: none; padding: 0; margin: 0; }
.beeq-faq-wrapper .popular-topics li { color: #aaaaaa; padding: 12px 10px; font-size: 13px; cursor: pointer; display: flex; justify-content: space-between; border-bottom: 1px solid #222; transition: all 0.2s ease; border-radius: 5px; }
.beeq-faq-wrapper .popular-topics li.active, .beeq-faq-wrapper .popular-topics li:hover { color: #111111; background-color: #a3d900; font-weight: bold; }

.beeq-faq-wrapper .faq-accordion-container { display: flex; flex-direction: column; gap: 12px; }
.beeq-faq-wrapper .faq-item { background: #ffffff; border: 1px solid #eef2f5; border-radius: 5px; overflow: hidden; display: block; transition: opacity 0.3s ease; }
.beeq-faq-wrapper .faq-toggle { display: none; }
.beeq-faq-wrapper .faq-question { display: flex; align-items: center; padding: 18px 20px; cursor: pointer; user-select: none; font-weight: 600; font-size: 15px; color: #1f2937; }
.beeq-faq-wrapper .faq-question:hover { background: #fafbfc; }

.beeq-faq-wrapper .toggle-icon { width: 22px; height: 22px; background: #a3d900; border-radius: 50%; margin-right: 15px; position: relative; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.beeq-faq-wrapper .toggle-icon::before, .beeq-faq-wrapper .toggle-icon::after { content: ""; position: absolute; background: #111111; transition: transform 0.25s ease-out; }
.beeq-faq-wrapper .toggle-icon::before { width: 10px; height: 2px; }
.beeq-faq-wrapper .toggle-icon::after { width: 2px; height: 10px; }

.beeq-faq-wrapper .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0, 1, 0, 1); background: #fbfdf6; }
.beeq-faq-wrapper .answer-content { padding: 20px; border-top: 1px solid #edf4dc; font-size: 14px; color: #4b5563; line-height: 1.6; }
.beeq-faq-wrapper .answer-content ul { margin-top: 10px; padding-left: 20px; }
.beeq-faq-wrapper .answer-content li { margin-bottom: 6px; }

.beeq-faq-wrapper .faq-toggle:checked + .faq-question { background: #fbfdf6; color: #111; }
.beeq-faq-wrapper .faq-toggle:checked + .faq-question .toggle-icon::after { transform: rotate(90deg); opacity: 0; }
.beeq-faq-wrapper .faq-toggle:checked ~ .faq-answer { max-height: 2000px; transition: max-height 0.3s cubic-bezier(1, 0, 1, 0); }

.beeq-faq-wrapper .faq-footer-stats { background: #111111; color: white; border-radius: 5px; padding: 25px; display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; margin-top: 40px; }
.beeq-faq-wrapper .stat-box h3 { color: #a3d900; font-size: 28px; margin: 0 0 5px 0; font-weight: 700; }
.beeq-faq-wrapper .stat-box p { margin: 0; font-size: 12px; color: #cccccc; }

@media (max-width: 991px) {
  .beeq-faq-wrapper .faq-main-layout { grid-template-columns: 1fr; }
  .beeq-faq-wrapper .faq-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .beeq-faq-wrapper .faq-footer-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .beeq-faq-wrapper .faq-sidebar { grid-template-columns: 1fr; }
  .beeq-faq-wrapper .faq-footer-stats { grid-template-columns: 1fr; gap: 25px; }
}


/* Container Namespace */
.beeq-policy-container {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #333333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.beeq-policy-container * {
  box-sizing: border-box;
}

/* Header Styling */
.beeq-policy-container .policy-header {
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.beeq-policy-container .policy-header h1 {
  font-size: 38px;
  color: #111111;
  margin: 0 0 10px 0;
  font-weight: 800;
}

.beeq-policy-container .effective-date {
  color: #666666;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* Layout System */
.beeq-policy-container .policy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Sidebar Sticky Index Menu */
.beeq-policy-container .policy-sidebar {
  position: sticky;
  top: 40px;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eeeeee;
}

.beeq-policy-container .sidebar-nav h4 {
  margin: 0 0 15px 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
}

.beeq-policy-container .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beeq-policy-container .sidebar-nav li {
  margin-bottom: 10px;
}

.beeq-policy-container .sidebar-nav a {
  text-decoration: none;
  color: #666666;
  font-size: 13.5px;
  transition: color 0.2s ease;
  display: block;
}

.beeq-policy-container .sidebar-nav a:hover {
  color: #a3d900;
  font-weight: 600;
}

/* Document Content Elements */
.beeq-policy-container .intro-card {
  background: #fdfdfd;
  border-left: 4px solid #a3d900;
  padding: 5px 20px;
  margin-bottom: 35px;
  color: #555555;
  font-size: 15.5px;
}

.beeq-policy-container .policy-section {
  margin-bottom: 45px;
  scroll-margin-top: 40px; /* Offset for internal anchors */
}

.beeq-policy-container .policy-section h2 {
  font-size: 22px;
  color: #111111;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
}

.beeq-policy-container .policy-section h3 {
  font-size: 17px;
  color: #222222;
  margin-top: 25px;
  margin-bottom: 10px;
}

.beeq-policy-container p {
  margin: 0 0 15px 0;
  font-size: 15px;
}

.beeq-policy-container a {
  color: #111111;
  text-decoration: underline;
  font-weight: 600;
}

.beeq-policy-container a:hover {
  color: #a3d900;
}

/* Bullet Lists */
.beeq-policy-container .styled-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.beeq-policy-container .styled-list li {
  margin-bottom: 8px;
  font-size: 14.5px;
}

/* Grid layout lists (Used in Section 3) */
.beeq-policy-container .grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.beeq-policy-container .grid-item {
  background: #f7fafc;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  border-left: 3px solid #eaeaea;
}

/* Company Details Table Graphic */
.beeq-policy-container .info-table-wrapper {
  overflow-x: auto;
  margin: 15px 0;
}

.beeq-policy-container .info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.beeq-policy-container .info-table td {
  padding: 12px 15px;
  border: 1px solid #eef2f5;
  vertical-align: top;
}

.beeq-policy-container .info-table tr:nth-child(even) {
  background: #fafafa;
}

.beeq-policy-container .info-table td:first-child {
  width: 180px;
  background: #f7f9fa;
  color: #222;
}

/* Blockquotes */
.beeq-policy-container blockquote {
  background: #fdfdf6;
  border-left: 4px solid #ccff00;
  padding: 15px 20px;
  margin: 20px 0;
  font-size: 14.5px;
  font-style: italic;
  border-radius: 0 6px 6px 0;
}

/* Platform Badges Graphic */
.beeq-policy-container .platforms-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}

.beeq-policy-container .platforms-badges span {
  background: #eef2f5;
  color: #4b5563;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12.5px;
  font-weight: 500;
}

/* Contact Card Section Layout */
.beeq-policy-container .contact-box {
  background: #111111;
  color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  font-size: 14.5px;
  margin-top: 15px;
}

.beeq-policy-container .contact-box a {
  color: #a3d900;
}

/* Bottom Consent Highlight Card */
.beeq-policy-container .consent-block {
  background: #f7fbe6;
  border: 1px solid #dbebad;
  padding: 25px;
  border-radius: 8px;
  margin-top: 60px;
}

.beeq-policy-container .consent-block h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #111111;
  font-size: 18px;
}

.beeq-policy-container .consent-block p {
  margin: 0;
  font-size: 14.5px;
  color: #444444;
}

/* Media Viewport Adaptations */
@media (max-width: 991px) {
  .beeq-policy-container .policy-layout {
    grid-template-columns: 1fr;
  }
  .beeq-policy-container .policy-sidebar {
    display: none; /* Hide Index Menu Panel on mobile viewports */
  }
}

@media (max-width: 600px) {
  .beeq-policy-container {
    padding: 25px 15px;
  }
  .beeq-policy-container .policy-header h1 {
    font-size: 28px;
  }
  .beeq-policy-container .grid-list {
    grid-template-columns: 1fr;
  }
}

/* Container Namespace */
.beeq-terms-container {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #333333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.beeq-terms-container * {
  box-sizing: border-box;
}

/* Header Styling */
.beeq-terms-container .terms-header {
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.beeq-terms-container .terms-header h1 {
  font-size: 38px;
  color: #111111;
  margin: 0 0 10px 0;
  font-weight: 800;
}

.beeq-terms-container .effective-date {
  color: #666666;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* Layout System */
.beeq-terms-container .terms-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Sidebar Sticky Index Menu */
.beeq-terms-container .terms-sidebar {
  position: sticky;
  top: 40px;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eeeeee;
  
  overflow-y: auto;
}

.beeq-terms-container .sidebar-nav h4 {
  margin: 0 0 15px 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
}

.beeq-terms-container .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beeq-terms-container .sidebar-nav li {
  margin-bottom: 8px;
}

.beeq-terms-container .sidebar-nav a {
  text-decoration: none;
  color: #666666;
  font-size: 13.5px;
  transition: color 0.2s ease;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.beeq-terms-container .sidebar-nav a:hover {
  color: #a3d900;
  font-weight: 600;
}

/* Document Content Elements */
.beeq-terms-container .intro-card {
  background: #fdfdfd;
  border-left: 4px solid #a3d900;
  padding: 5px 20px;
  margin-bottom: 35px;
  color: #555555;
  font-size: 15.5px;
}

.beeq-terms-container .terms-section {
  margin-bottom: 45px;
  scroll-margin-top: 40px; /* Offset for internal anchors */
}

.beeq-terms-container .terms-section h2 {
  font-size: 22px;
  color: #111111;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
}

.beeq-terms-container p {
  margin: 0 0 15px 0;
  font-size: 15px;
}

.beeq-terms-container a {
  color: #111111;
  text-decoration: underline;
  font-weight: 600;
}

.beeq-terms-container a:hover {
  color: #a3d900;
}

/* Bullet Lists */
.beeq-terms-container .styled-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.beeq-terms-container .styled-list li {
  margin-bottom: 8px;
  font-size: 14.5px;
}

/* Grid layout lists */
.beeq-terms-container .grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.beeq-terms-container .grid-item {
  background: #f7fafc;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  border-left: 3px solid #eaeaea;
}

/* Details Table Graphic */
.beeq-terms-container .info-table-wrapper {
  overflow-x: auto;
  margin: 15px 0;
}

.beeq-terms-container .info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.beeq-terms-container .info-table td {
  padding: 12px 15px;
  border: 1px solid #eef2f5;
  vertical-align: top;
}

.beeq-terms-container .info-table tr:nth-child(even) {
  background: #fafafa;
}

.beeq-terms-container .info-table td:first-child {
  width: 180px;
  background: #f7f9fa;
  color: #222;
}

/* Blockquotes */
.beeq-terms-container blockquote {
  background: #fdfdf6;
  border-left: 4px solid #ccff00;
  padding: 15px 20px;
  margin: 20px 0;
  font-size: 14.5px;
  font-style: italic;
  border-radius: 0 6px 6px 0;
}

/* Contact Card Section Layout */
.beeq-terms-container .contact-box {
  background: #111111;
  color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  font-size: 14.5px;
  margin-top: 15px;
  line-height: 1.8;
}

.beeq-terms-container .contact-box a {
  color: #a3d900;
}

/* Media Viewport Adaptations */
@media (max-width: 991px) {
  .beeq-terms-container .terms-layout {
    grid-template-columns: 1fr;
  }
  .beeq-terms-container .terms-sidebar {
    display: none; /* Hide Index Menu Panel on tablet and mobile devices */
  }
}

@media (max-width: 600px) {
  .beeq-terms-container {
    padding: 25px 15px;
  }
  .beeq-terms-container .terms-header h1 {
    font-size: 28px;
  }
  .beeq-terms-container .grid-list {
    grid-template-columns: 1fr;
  }
}

/* Container Namespace */
.beeq-dp-container {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #333333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.beeq-dp-container * {
  box-sizing: border-box;
}

/* Header Styling */
.beeq-dp-container .dp-header {
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.beeq-dp-container .dp-header h1 {
  font-size: 38px;
  color: #111111;
  margin: 0 0 10px 0;
  font-weight: 800;
}

.beeq-dp-container .effective-date {
  color: #666666;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* Layout System */
.beeq-dp-container .dp-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Sidebar Sticky Index Menu */
.beeq-dp-container .dp-sidebar {
  position: sticky;
  top: 40px;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eeeeee;
  max-height: 85vh;
  overflow-y: auto;
}

.beeq-dp-container .sidebar-nav h4 {
  margin: 0 0 15px 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
}

.beeq-dp-container .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beeq-dp-container .sidebar-nav li {
  margin-bottom: 8px;
}

.beeq-dp-container .sidebar-nav a {
  text-decoration: none;
  color: #666666;
  font-size: 13.5px;
  transition: color 0.2s ease;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.beeq-dp-container .sidebar-nav a:hover {
  color: #a3d900;
  font-weight: 600;
}

/* Document Content Elements */
.beeq-dp-container .intro-card {
  background: #fdfdfd;
  border-left: 4px solid #a3d900;
  padding: 5px 20px;
  margin-bottom: 35px;
  color: #555555;
  font-size: 15.5px;
}

.beeq-dp-container .dp-section {
  margin-bottom: 45px;
  scroll-margin-top: 40px; /* Offset for internal anchors */
}

.beeq-dp-container .dp-section h2 {
  font-size: 22px;
  color: #111111;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
}

.beeq-dp-container .dp-section h3 {
  font-size: 16.5px;
  color: #222222;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.beeq-dp-container p {
  margin: 0 0 15px 0;
  font-size: 15px;
}

.beeq-dp-container a {
  color: #111111;
  text-decoration: underline;
  font-weight: 600;
}

.beeq-dp-container a:hover {
  color: #a3d900;
}

/* Bullet Lists */
.beeq-dp-container .styled-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.beeq-dp-container .styled-list li {
  margin-bottom: 8px;
  font-size: 14.5px;
}

/* Grid layout lists */
.beeq-dp-container .grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.beeq-dp-container .grid-item {
  background: #f7fafc;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  border-left: 3px solid #eaeaea;
}

/* Details Table Graphic */
.beeq-dp-container .info-table-wrapper {
  overflow-x: auto;
  margin: 15px 0;
}

.beeq-dp-container .info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.beeq-dp-container .info-table td {
  padding: 12px 15px;
  border: 1px solid #eef2f5;
  vertical-align: top;
}

.beeq-dp-container .info-table tr:nth-child(even) {
  background: #fafafa;
}

.beeq-dp-container .info-table td:first-child {
  width: 180px;
  background: #f7f9fa;
  color: #222;
}

/* Blockquotes */
.beeq-dp-container blockquote {
  background: #fdfdf6;
  border-left: 4px solid #ccff00;
  padding: 15px 20px;
  margin: 20px 0;
  font-size: 14.5px;
  font-style: italic;
  border-radius: 0 6px 6px 0;
}

/* Contact Card Section Layout */
.beeq-dp-container .contact-box {
  background: #111111;
  color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  font-size: 14.5px;
  margin-top: 15px;
  line-height: 1.8;
}

.beeq-dp-container .contact-box a {
  color: #a3d900;
}

/* Bottom Commitment Highlight Card */
.beeq-dp-container .consent-block {
  background: #f7fbe6;
  border: 1px solid #dbebad;
  padding: 25px;
  border-radius: 8px;
  margin-top: 60px;
}

.beeq-dp-container .consent-block h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #111111;
  font-size: 18px;
}

.beeq-dp-container .consent-block p {
  margin: 0;
  font-size: 14.5px;
  color: #444444;
}

/* Media Viewport Adaptations */
@media (max-width: 991px) {
  .beeq-dp-container .dp-layout {
    grid-template-columns: 1fr;
  }
  .beeq-dp-container .dp-sidebar {
    display: none; /* Hide Index Menu Panel on mobile layouts */
  }
}

@media (max-width: 600px) {
  .beeq-dp-container {
    padding: 25px 15px;
  }
  .beeq-dp-container .dp-header h1 {
    font-size: 28px;
  }
  .beeq-dp-container .grid-list {
    grid-template-columns: 1fr;
  }
}

/* Container Namespace */
.beeq-faq-container {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #333333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.beeq-faq-container * {
  box-sizing: border-box;
}

/* Header Styling */
.beeq-faq-container .faq-header {
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.beeq-faq-container .faq-header h1 {
  font-size: 38px;
  color: #111111;
  margin: 0 0 10px 0;
  font-weight: 800;
}

.beeq-faq-container .effective-date {
  color: #666666;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* Layout System */
.beeq-faq-container .faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Sidebar Sticky Navigation */
.beeq-faq-container .faq-sidebar {
  position: sticky;
  top: 40px;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eeeeee;
}

.beeq-faq-container .sidebar-nav h4 {
  margin: 0 0 15px 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
}

.beeq-faq-container .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beeq-faq-container .sidebar-nav li {
  margin-bottom: 12px;
}

.beeq-faq-container .sidebar-nav a {
  text-decoration: none;
  color: #666666;
  font-size: 14px;
  transition: all 0.2s ease;
  display: block;
}

.beeq-faq-container .sidebar-nav a:hover {
  color: #a3d900;
  font-weight: 600;
  padding-left: 2px;
}

/* Intro Callout Card */
.beeq-faq-container .intro-card {
  background: #fdfdfd;
  border-left: 4px solid #a3d900;
  padding: 5px 20px;
  margin-bottom: 40px;
  color: #555555;
  font-size: 15.5px;
}

/* Section Grouping blocks */
.beeq-faq-container .faq-section {
  margin-bottom: 60px;
  scroll-margin-top: 40px;
}

.beeq-faq-container .faq-section h2 {
  font-size: 26px;
  color: #111111;
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #111111;
  font-weight: 700;
}

/* Individual Question Blocks */
.beeq-faq-container .faq-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.beeq-faq-container .faq-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.beeq-faq-container .faq-card h3 {
  font-size: 17px;
  color: #111111;
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 600;
}

.beeq-faq-container p {
  margin: 0 0 15px 0;
  font-size: 15px;
}

.beeq-faq-container p:last-child {
  margin-bottom: 0;
}

.beeq-faq-container a {
  color: #111111;
  text-decoration: underline;
  font-weight: 600;
}

.beeq-faq-container a:hover {
  color: #a3d900;
}

/* Typography Bullet Parameters */
.beeq-faq-container .styled-list {
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.beeq-faq-container .styled-list li {
  margin-bottom: 8px;
  font-size: 14.5px;
}

/* Custom Highlight Item Grids */
.beeq-faq-container .grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.beeq-faq-container .grid-item {
  background: #f7fafc;
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 14px;
  border-left: 3px solid #eaeaea;
}

/* Details Table Layout */
.beeq-faq-container .info-table-wrapper {
  overflow-x: auto;
  margin: 15px 0;
}

.beeq-faq-container .info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.beeq-faq-container .info-table td {
  padding: 12px 15px;
  border: 1px solid #eef2f5;
  vertical-align: top;
}

.beeq-faq-container .info-table tr:nth-child(even) {
  background: #fafafa;
}

.beeq-faq-container .info-table td:first-child {
  width: 180px;
  background: #f7f9fa;
  color: #222;
}

/* Callout Highlights */
.beeq-faq-container blockquote {
  background: #fdfdf6;
  border-left: 4px solid #ccff00;
  padding: 15px 20px;
  margin: 15px 0;
  font-size: 14.5px;
  font-style: italic;
  border-radius: 0 6px 6px 0;
}

/* Strategic Action Contact Panel */
.beeq-faq-container .contact-box {
  background: #111111;
  color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  font-size: 14.5px;
  margin-top: 20px;
  line-height: 1.8;
}

.beeq-faq-container .contact-box a {
  color: #a3d900;
  text-decoration: underline;
}

/* Bottom Lead Block Wrap */
.beeq-faq-container .faq-cta-block {
  background: #f7fbe6;
  border: 1px solid #dbebad;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}

.beeq-faq-container .faq-cta-block h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #111111;
  font-size: 20px;
  font-weight: 700;
}

.beeq-faq-container .faq-cta-block p {
  margin: 0;
  font-size: 15px;
  color: #444444;
}

/* Viewport Responsiveness Adjustments */
@media (max-width: 991px) {
  .beeq-faq-container .faq-layout {
    grid-template-columns: 1fr;
  }
  .beeq-faq-container .faq-sidebar {
    display: none; /* Hide Sidebar Panel on small layouts */
  }
}

@media (max-width: 600px) {
  .beeq-faq-container {
    padding: 25px 15px;
  }
  .beeq-faq-container .faq-header h1 {
    font-size: 28px;
  }
  .beeq-faq-container .grid-list {
    grid-template-columns: 1fr;
  }
  .beeq-faq-container .faq-card {
    padding: 18px;
  }
}
/* Container Namespace */
.beeq-refund-container {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #333333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.beeq-refund-container * {
  box-sizing: border-box;
}

/* Header Styling */
.beeq-refund-container .refund-header {
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.beeq-refund-container .refund-header h1 {
  font-size: 38px;
  color: #111111;
  margin: 0 0 10px 0;
  font-weight: 800;
}

.beeq-refund-container .effective-date {
  color: #666666;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* Layout Grid Configuration */
.beeq-refund-container .refund-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Sidebar Sticky Menu */
.beeq-refund-container .refund-sidebar {
  position: sticky;
  top: 40px;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eeeeee;
  max-height: 85vh;
  overflow-y: auto;
}

.beeq-refund-container .sidebar-nav h4 {
  margin: 0 0 15px 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
}

.beeq-refund-container .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beeq-refund-container .sidebar-nav li {
  margin-bottom: 8px;
}

.beeq-refund-container .sidebar-nav a {
  text-decoration: none;
  color: #666666;
  font-size: 13.5px;
  transition: color 0.2s ease;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.beeq-refund-container .sidebar-nav a:hover {
  color: #a3d900;
  font-weight: 600;
}

/* Content Element Formats */
.beeq-refund-container .intro-card {
  background: #fdfdfd;
  border-left: 4px solid #a3d900;
  padding: 5px 20px;
  margin-bottom: 35px;
  color: #555555;
  font-size: 15.5px;
}

.beeq-refund-container .refund-section {
  margin-bottom: 45px;
  scroll-margin-top: 40px; /* Precise internal anchor targeting layout offsets */
}

.beeq-refund-container .refund-section h2 {
  font-size: 22px;
  color: #111111;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
}

.beeq-refund-container p {
  margin: 0 0 15px 0;
  font-size: 15px;
}

.beeq-refund-container a {
  color: #111111;
  text-decoration: underline;
  font-weight: 600;
}

.beeq-refund-container a:hover {
  color: #a3d900;
}

/* Custom Lists */
.beeq-refund-container .styled-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.beeq-refund-container .styled-list li {
  margin-bottom: 8px;
  font-size: 14.5px;
}

/* Component Service Grid Blocks */
.beeq-refund-container .grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.beeq-refund-container .grid-item {
  background: #f7fafc;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  border-left: 3px solid #eaeaea;
}

/* Dynamic Data Tables */
.beeq-refund-container .info-table-wrapper {
  overflow-x: auto;
  margin: 15px 0;
}

.beeq-refund-container .info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.beeq-refund-container .info-table td,
.beeq-refund-container .info-table th {
  padding: 12px 15px;
  border: 1px solid #eef2f5;
  vertical-align: top;
}

.beeq-refund-container .info-table tr:nth-child(even) {
  background: #fafafa;
}

.beeq-refund-container .info-table td:first-child {
  width: 180px;
  background: #f7f9fa;
  color: #222;
}

/* Summary Specific Override styling rules */
.beeq-refund-container .summary-table td:first-child {
  width: auto;
  background: transparent;
}

.beeq-refund-container .summary-table tr:nth-child(even) {
  background: #fdfdfd;
}

/* Specialized Blockquotes */
.beeq-refund-container blockquote {
  background: #fdfdf6;
  border-left: 4px solid #ccff00;
  padding: 15px 20px;
  margin: 20px 0;
  font-size: 14.5px;
  font-style: italic;
  border-radius: 0 6px 6px 0;
}

/* Contact Details Box */
.beeq-refund-container .contact-box {
  background: #111111;
  color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  font-size: 14.5px;
  margin-top: 15px;
  line-height: 1.8;
}

.beeq-refund-container .contact-box a {
  color: #a3d900;
}

/* Responsive Viewport Management Rules */
@media (max-width: 991px) {
  .beeq-refund-container .refund-layout {
    grid-template-columns: 1fr;
  }
  .beeq-refund-container .refund-sidebar {
    display: none; /* Hide internal sidebar nav list inside narrow screen widths */
  }
}

@media (max-width: 600px) {
  .beeq-refund-container {
    padding: 25px 15px;
  }
  .beeq-refund-container .refund-header h1 {
    font-size: 28px;
  }
  .beeq-refund-container .grid-list {
    grid-template-columns: 1fr;
  }
}

/* Scoped Wrapper to avoid bleeding into existing site styles */
.bq-infographic-wrapper {
  background-color: #fcfdfc;
  color: #333333;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 10px;
}

.bq-infographic-wrapper * {
  box-sizing: border-box;
}

/* --- Header Component --- */
.bq-brand-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.bq-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bq-logo-main {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  background: #a3d618;
  padding: 2px 10px;
  border-radius: 8px;
}

.bq-logo-sub {
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}

.bq-logo-sub small {
  font-size: 10px;
  letter-spacing: 2px;
  color: #666;
}

.bq-badge {
  background-color: #f1f5e8;
  color: #7fa310;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.bq-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.bq-intro-text h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}

.bq-intro-text .bq-highlight {
  color: #8cb615;
}

.bq-intro-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.bq-cta-note {
  font-size: 15px !important;
  color: #111 !important;
}

.bq-objective-box {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  gap: 15px;
  margin: 25px 0;
  align-items: center;
}

.bq-obj-icon {
  font-size: 24px;
  background: #2a2a2a;
  padding: 10px;
  border-radius: 50px;
  line-height: 1;
}

.bq-objective-box strong {
  color: #a3d618;
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
}

.bq-objective-box p {
  color: #ccc;
  margin: 0;
  font-size: 13px;
}

/* Green Action Button */
.bq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #a3d618;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.bq-btn:hover {
  background-color: #8cb615;
}

.bq-btn-arrow {
  background: rgba(0,0,0,0.1);
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 15px;
  font-size: 16px;
}

.bq-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- Timeline Component --- */
.bq-process-section {
  position: relative;
  margin: 60px 0;
  padding: 20px 0;
}

.bq-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #a3d618;
  transform: translateX(-50%);
}

.bq-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}

.bq-process-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bq-right-col {
  margin-top: 40px; /* Staggers the right side downward like the infographic */
}

/* Step Cards */
.bq-step-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.bq-step-icon {
  background: #f9fbf7;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid #eef3e2;
}

.bq-step-content {
  flex-grow: 1;
}

.bq-step-content h3 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.bq-step-content p {
  margin: 0;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.bq-step-number {
  background: #a3d618;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* Connecting Nodes positioning */
.bq-left-card .bq-step-number {
  right: -53px;
}

.bq-right-card .bq-step-number {
  left: -53px;
}

/* --- Funnel Flow Component --- */
.bq-footer-funnel {
  background: #ffffff;
  border: 1px solid #eef2eb;
  border-radius: 5px;
  padding: 30px;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.bq-funnel-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.bq-funnel-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}

.bq-funnel-node {
  background: #fafbfa;
  border: 1px solid #f0f2ee;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  flex: 1;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bq-node-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.bq-funnel-node h4 {
  margin: 0 0 6px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bq-funnel-node p {
  margin: 0;
  font-size: 10px;
  color: #666;
  line-height: 1.3;
}

.bq-funnel-arrow {
  color: #bbb;
  font-size: 16px;
}

/* Growth Action Box */
.bq-growth-box {
  background: #fafbfa;
  border: 1px dashed #a3d618;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.bq-growth-box h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.bq-green-text {
  color: #8cb615;
}

/* Bottom Strip */
.bq-features-strip {
  background: #111;
  color: #fff;
  border-radius: 5px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.bq-feature-item {
  font-size: 11px;
  font-weight: 700;
  color: #a3d618;
}

.bq-light-text {
  color: #aaa;
  font-weight: 400;
  display: block;
  font-size: 10px;
}

.bq-btn-small {
  padding: 8px 18px;
  font-size: 11px;
}

/* --- Responsive Layout Breakpoints --- */

@media (max-width: 992px) {
  .bq-intro-grid {
    grid-template-columns: 1fr;
  }
  .bq-intro-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .bq-funnel-flow {
    flex-direction: column;
    gap: 15px;
  }
  .bq-funnel-node {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }
  .bq-funnel-arrow {
    transform: rotate(90deg);
    margin: 5px 0;
  }
  .bq-growth-box {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .bq-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bq-timeline-line {
    display: none; /* Hide timeline line on narrow screens */
  }
  .bq-right-col {
    margin-top: 0;
  }
  .bq-step-number {
    position: static;
    transform: none;
    flex-shrink: 0;
  }
  .bq-step-card {
    border-radius: 12px;
    padding: 15px;
  }
  .bq-left-card {
    flex-direction: row;
  }
  /* Normalize step positioning on mobile devices */
  .bq-left-card .bq-step-number, 
  .bq-right-card .bq-step-number {
    order: -1; 
  }
  .bq-features-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .bq-btn-small {
    width: 100%;
  }
}


/* Isolated wrapper matching exactly the graphic proportions */
.bq-exact-wrapper {
 
  background-color: #ffffff;
  color: #333333;
  max-width: 1240px;
  margin: 0 auto;
  padding:70px 10px;
  
  box-sizing: border-box;
}

.bq-exact-wrapper * {
  box-sizing: border-box;
}

/* --- Hero Header Layout --- */
.bq-exact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  margin-bottom: 35px;
  position: relative;
}

.bq-logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}

.bq-logo-box {
  font-size: 36px;
  font-weight: 900;
  color: #000000;
  background-color: #b0e11e;
  padding: 0px 14px;
  border-radius: 8px;
}

.bq-logo-text {
  font-weight: bold;
  font-size: 19px;
  line-height: 0.95;
}

.bq-logo-text small {
  font-size: 10px;
  letter-spacing: 2px;
  color: #555555;
}

.bq-pill-badge {
  display: inline-block;
  background-color: #b0e11e;
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 5px;
  margin-bottom: 25px;
}

.bq-main-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #111111;
  margin: 0;
}

.bq-lime-light {
  color: #a0ce1b;
}

.bq-lime-dark {
  color: #7ba210;
}

/* Curve Cut/Fade masking for background image */
.bq-skyline-mask {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  border-radius: 0 0 0 120px;
}

.bq-skyline-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Three Column Grid Layout --- */
.bq-three-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 40px;
}

.bq-content-card {
  background: #ffffff;
  padding: 10px 10px;
  border-radius: 5px;
  
}

.bq-icon-circle {
  font-size: 26px;
  background: #f8fbf4;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e1ebd3;
  margin-bottom: 18px;
}

.bq-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
  margin: 0 0 16px 0;
}

.bq-text-lime {
  color: #a0ce1b;
}

.bq-content-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #4c4c4c;
  margin: 0 0 15px 0;
}

.bq-brand-emphasis {
  font-weight: 700;
  color: #a0ce1b;
}

/* Column 1 Inside Panel */
.bq-dark-panel {
  background: #111111;
  color: #ffffff;
  border-radius: 5px;
  padding: 18px;
  margin-top: 25px;
}

.bq-panel-heading {
  font-size: 13px !important;
  font-weight: 700;
  
  margin-bottom: 15px !important;
  color: #ffffff !important;
}

.bq-panel-heading span {
  color: #b0e11e;
}

.bq-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 10px;
}

.bq-panel-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bq-panel-icon {
  font-size: 14px;
}

.bq-panel-item p {
  font-size: 11px !important;
  color: #cccccc !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* Column 2 Channels Matrix */
.bq-sub-section-title {
  font-weight: 700;
  font-size: 13px;
  color: #a0ce1b;
  margin: 20px 0 12px 0 !important;
}

.bq-channels-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.bq-chan-item {
  background: #fafcfa;
  border: 1px solid #edf1eb;
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 500;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bq-chan-ico {
  color: #a0ce1b;
  font-weight: bold;
}

.bq-bottom-status {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fcfdfa;
  padding: 12px;
  border-radius: 6px;
  border-left: 3px solid #b0e11e;
}

.bq-status-check {
  color: #a0ce1b;
  font-weight: 900;
}

.bq-bottom-status p {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  color: #444444;
}

/* Column 3 List Element */
.bq-check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.bq-check-list li {
  font-size: 12.5px;
  color: #444444;
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.bq-check-list li span {
  color: #a0ce1b;
  font-weight: bold;
}

.bq-footer-bold {
  font-weight: bold;
  color: #111111;
  border-top: 1px solid #eeeeee;
  padding-top: 15px;
}

/* --- Bottom Ribbon Design --- */
.bq-exact-footer-ribbon {
  background-color: #b0e11e;
  border-radius: 5px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bq-ribbon-text-side {
  font-size: 19px;
  font-weight: 500;
  color: #000000;
  max-width: 380px;
  line-height: 1.25;
}

.bq-ribbon-steps-side {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bq-pill-step {
  background: #ffffff;
  border-radius: 5px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.bq-p-icon {
  font-size: 16px;
}

.bq-p-txt strong {
  display: block;
  font-size: 11.5px;
  font-weight: bold;
  color: #000000;
  line-height: 1.1;
}

.bq-p-txt p {
  margin: 0;
  font-size: 10px;
  color: #555555;
  line-height: 1.1;
}

.bq-p-arrow {
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
}

.bq-dark-pill {
  background: #111111;
  padding: 6px 20px;
}

.bq-p-icon-lime {
  font-size: 16px;
}

.bq-p-txt-white strong {
  display: block;
  font-size: 11.5px;
  font-weight: bold;
  color: #b0e11e;
  line-height: 1.1;
}

.bq-p-txt-white p {
  margin: 0;
  font-size: 10px;
  color: #aaaaaa;
  line-height: 1.1;
}

/* --- Screen Adaptation Breakpoints --- */

@media (max-width: 1250px) {
  .bq-exact-footer-ribbon {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  .bq-ribbon-text-side {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .bq-ribbon-steps-side {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .bq-three-col-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bq-exact-hero {
    grid-template-columns: 1fr;
  }
  .bq-skyline-mask {
    border-radius: 12px;
    margin-top: 25px;
    height: 220px;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (max-width: 768px) {
  .bq-three-col-grid {
    grid-template-columns: 1fr;
  }
  .bq-ribbon-steps-side {
    flex-direction: column;
    gap: 10px;
  }
  .bq-pill-step, .bq-dark-pill {
    width: 100%;
    justify-content: flex-start;
  }
  .bq-p-arrow {
    transform: rotate(90deg);
    margin: 2px 0;
  }
  .bq-main-title {
    font-size: 32px;
  }
}

/* Container to force Icon and Title onto the same row */
.bq-card-header {
  display: flex;
  align-items: center; /* Aligns them perfectly center vertically */
  gap: 15px;           /* Exact spacing between the icon and the text */
  margin-bottom: 16px; /* Moves the paragraph text down uniformly */
}

/* Adjusted Icon properties for inline alignment */
.bq-exact-wrapper .bq-icon-circle {
  margin-bottom: 0;    /* Removes old bottom margin to prevent alignment skew */
  flex-shrink: 0;      /* Prevents the circle from squeezing on smaller screens */
}

/* Adjusted Title properties for inline alignment */
.bq-exact-wrapper .bq-card-title {
  margin-bottom: 0;    /* Let the parent container handle the bottom spacing */
}

/* Isolated Parent Namespace wrapper */
.bq-landing-wrapper {
 
  color: #333333;
  background-color: #ffffff;
  width:1240px;
  box-sizing: border-box;
  margin: auto;
}

.bq-landing-wrapper *, 
.bq-landing-wrapper *::before, 
.bq-landing-wrapper *::after {
  box-sizing: border-box;
}

/* Color Variables Scope Helper */
.bq-landing-wrapper {
  --bq-lime: #a3d900;
  --bq-dark-lime: #8cbd00;
  --bq-dark: #111111;
  --bq-gray-bg: #f9fbf7;
  --bq-text-muted: #555555;
}

/* Highlight Utilities */
.bq-landing-wrapper .bq-text-highlight {
  color: var(--bq-lime);
}

/* Hero Section */
.bq-landing-wrapper .bq-hero-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

@media(min-width: 992px) {
  .bq-landing-wrapper .bq-hero-section {
    flex-direction: row;
    align-items: center;
  }
  .bq-landing-wrapper .bq-hero-text {
    flex: 1;
    padding-right: 40px;
  }
  .bq-landing-wrapper .bq-hero-image-container {
    flex: 1;
    position: relative;
  }
}

.bq-landing-wrapper .bq-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.bq-landing-wrapper .bq-logo-main {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: -1px;
}
.bq-landing-wrapper .bq-logo-sub {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.1;
  border-left: 2px solid #ccc;
  padding-left: 10px;
}

.bq-landing-wrapper .bq-badge {
  background-color: var(--bq-lime);
  color: var(--bq-dark);
  font-size: 11px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 15px;
}

.bq-landing-wrapper .bq-hero-text h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 15px 0;
  color: var(--bq-dark);
}

@media(min-width: 768px) {
  .bq-landing-wrapper .bq-hero-text h1 { font-size: 46px; }
}

.bq-landing-wrapper .bq-hero-lead {
  font-size: 16px;
  color: var(--bq-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Masked Skyline Image Concept */
.bq-landing-wrapper .bq-hero-image {
  width: 100%;
  height: 300px;
  background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1200&q=80'); /* Fallback premium skyline */
  background-size: cover;
  background-position: center;
  border-radius: 0 0 0 100px;
}

@media(min-width: 992px) {
  .bq-landing-wrapper .bq-hero-image {
    height: 400px;
    border-radius: 0 0 0 180px;
  }
}

/* Service Grid Setup */
.bq-landing-wrapper .bq-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

@media(min-width: 768px) {
  .bq-landing-wrapper .bq-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width: 1200px) {
  .bq-landing-wrapper .bq-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Individual Card Styling */
.bq-landing-wrapper .bq-card {
  background: #ffffff;
  border: 1px solid #eef2eb;
  border-radius: 5px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.bq-landing-wrapper .bq-card-header {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.bq-landing-wrapper .bq-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.bq-landing-wrapper .bq-bg-dark { background-color: var(--bq-dark); color: #fff; }
.bq-landing-wrapper .bq-bg-blue { background-color: #1a73e8; color: #fff; }

.bq-landing-wrapper .bq-card h2 {
  font-size: 18px;
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
}

.bq-landing-wrapper .bq-card-desc {
  font-size: 13px;
  color: var(--bq-text-muted);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.bq-landing-wrapper .bq-sub-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

/* Custom Multicolumn Checklist */
.bq-landing-wrapper .bq-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
  border-top: 1px solid #eeeeee;
  padding-top: 15px;
  margin-bottom: 20px;
}

.bq-landing-wrapper .bq-feature-list li {
  font-size: 12px;
  position: relative;
  padding-left: 20px;
  line-height: 1.3;
  color: #444;
}

.bq-landing-wrapper .bq-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #fff;
  background-color: var(--bq-lime);
  width: 14px;
  height: 14px;
  border-radius: 50px;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Card Bottom Highlight Box */
.bq-landing-wrapper .bq-card-footer {
  background-color: var(--bq-gray-bg);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.bq-landing-wrapper .bq-card-footer p {
  font-size: 12px;
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}

.bq-landing-wrapper .bq-footer-icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* Dark Bottom Bar & CTA Layout */
.bq-landing-wrapper .bq-value-bar {
  background-color: var(--bq-dark);
  color: #ffffff;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}

@media(min-width: 992px) {
  .bq-landing-wrapper .bq-value-bar {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 25px;
  }
}

.bq-landing-wrapper .bq-value-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
}

@media(min-width: 600px) {
  .bq-landing-wrapper .bq-value-items { grid-template-columns: repeat(3, 1fr); }
}
@media(min-width: 992px) {
  .bq-landing-wrapper .bq-value-items {
    display: flex;
    gap: 25px;
    width: auto;
  }
}

.bq-landing-wrapper .bq-v-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1.3;
}

.bq-landing-wrapper .bq-v-item strong {
  color: #ffffff;
}

.bq-landing-wrapper .bq-v-item div {
  color: #bbbbbb;
}

.bq-landing-wrapper .bq-v-icon {
  font-size: 18px;
}

/* Button UI */
.bq-landing-wrapper .bq-cta-btn {
  background-color: var(--bq-lime);
  color: var(--bq-dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}

@media(min-width: 992px) {
  .bq-landing-wrapper .bq-cta-btn { width: auto; }
}

.bq-landing-wrapper .bq-cta-btn:hover {
  background-color: var(--bq-dark-lime);
}

.bq-landing-wrapper .bq-arrow {
  background: rgba(0,0,0,0.1);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Horizontal Trust Footer */
.bq-landing-wrapper .bq-trust-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
}

.bq-landing-wrapper .bq-trust-item {
  font-size: 12px;
  color: #666666;
  font-weight: 500;
}
/* Isolated FAQ Interface Engine Stylesheet */
.beeq-faq-wrapper {
  color: #ffffff;
  
  padding: 60px 20px;
  box-sizing: border-box;
}

.beeq-faq-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.beeq-faq-wrapper .faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section styling */
.beeq-faq-wrapper .faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.beeq-faq-wrapper .faq-badge {
  font-size: 14px;
  font-weight: 700;
  color: #a3e635;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.beeq-faq-wrapper .faq-badge::before,
.beeq-faq-wrapper .faq-badge::after {
  content: " — ";
  color: #4b5563;
}

.beeq-faq-wrapper .faq-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.beeq-faq-wrapper .faq-title span {
  color: #a3e635;
}

.beeq-faq-wrapper .faq-subtitle {
  font-size: 16px;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

/* UI Search elements */
.beeq-faq-wrapper .faq-search-box {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 5px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.beeq-faq-wrapper .search-icon {
  font-size: 18px;
  color: #9ca3af;
  margin-right: 12px;
}

.beeq-faq-wrapper .faq-search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 16px;
}

.beeq-faq-wrapper .faq-search-box input::placeholder {
  color: #6b7280;
}

.beeq-faq-wrapper .faq-search-btn {
  background-color: #a3e635;
  color: #000000;
  border: none;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 28px;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.beeq-faq-wrapper .faq-search-btn:hover {
  background-color: #bef264;
}

/* Core Layout Configurations */
.beeq-faq-wrapper .faq-main-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

/* Sidebar & Navigation Styles */
.beeq-faq-wrapper .sidebar-card {
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: 5px;
  padding: 24px;
  margin-bottom: 24px;
}

.beeq-faq-wrapper .sidebar-title {
  color: #a3e635;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.beeq-faq-wrapper .category-list {
  list-style: none;
}

.beeq-faq-wrapper .category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #d1d5db;
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.beeq-faq-wrapper .category-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.beeq-faq-wrapper .category-item.active {
  background-color: #a3e635;
  color: #000000;
}

.beeq-faq-wrapper .cat-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.beeq-faq-wrapper .cat-icon {
  font-size: 16px;
}

.beeq-faq-wrapper .cat-count {
  font-size: 13px;
  opacity: 0.8;
}

/* Sidebar Callout Card */
.beeq-faq-wrapper .sidebar-cta-card {
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: 5px;
  padding: 30px 24px;
  text-align: center;
}

.beeq-faq-wrapper .cta-icon-wrap {
  width: 54px;
  height: 54px;
  background-color: rgba(163, 230, 53, 0.1);
  border: 1px solid rgba(163, 230, 53, 0.2);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.beeq-faq-wrapper .agent-icon {
  font-size: 24px;
}

.beeq-faq-wrapper .sidebar-cta-card h4 {
  font-size: 18px;
  color: #a3e635;
  margin-bottom: 8px;
}

.beeq-faq-wrapper .sidebar-cta-card p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.5;
  margin-bottom: 20px;
}

.beeq-faq-wrapper .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #a3e635;
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.beeq-faq-wrapper .whatsapp-btn:hover {
  background-color: #bef264;
}

/* Accordion Grid Mechanics */
.beeq-faq-wrapper .faq-accordion-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.beeq-faq-wrapper .faq-item {
  background-color: #ffffff;
  color: #111827;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.beeq-faq-wrapper .faq-item.active {
  background-color: #f7fee7;
  border: 1px solid rgba(163, 230, 53, 0.4);
}

.beeq-faq-wrapper .faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  padding: 24px;
  cursor: pointer;
  position: relative;
}

.beeq-faq-wrapper .faq-number {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  background-color: #a3e635;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-right: 18px;
  flex-shrink: 0;
}

.beeq-faq-wrapper .faq-question {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  padding-right: 40px;
  line-height: 1.4;
  flex: 1;
}

.beeq-faq-wrapper .faq-icon-indicator {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #f3f4f6;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.2s ease;
}

.beeq-faq-wrapper .faq-icon-indicator::before {
  content: "+";
  font-size: 16px;
  font-weight: 600;
  color: #4b5563;
}

.beeq-faq-wrapper .faq-item.active .faq-icon-indicator {
  transform: translateY(-50%) rotate(45deg);
  background-color: #111827;
}

.beeq-faq-wrapper .faq-item.active .faq-icon-indicator::before {
  color: #ffffff;
}

/* Expandable Smooth Panels */
.beeq-faq-wrapper .faq-content-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.beeq-faq-wrapper .faq-content-body {
  padding: 0 24px 24px 74px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.beeq-faq-wrapper .faq-inner-list {
  margin-top: 12px;
  padding-left: 20px;
}

.beeq-faq-wrapper .faq-inner-list li {
  margin-bottom: 6px;
}

/* Feature Grid Footer Layout */
.beeq-faq-wrapper .faq-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  border-top: 1px solid #1f2937;
  padding-top: 40px;
  margin-top: 40px;
}

.beeq-faq-wrapper .feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.beeq-faq-wrapper .feat-icon {
  font-size: 24px;
  margin-top: 2px;
}

.beeq-faq-wrapper .feat-info h5 {
  font-size: 15px;
  font-weight: 700;
  color: #a3e635;
  margin-bottom: 6px;
}

.beeq-faq-wrapper .feat-info p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

/* Bottom CTA Element styling */
.beeq-faq-wrapper .faq-footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  color: #111827;
  padding: 20px 30px;
  border-radius: 12px;
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.beeq-faq-wrapper .faq-footer-cta p {
  font-size: 16px;
  font-weight: 600;
}

.beeq-faq-wrapper .faq-cta-btn {
  background-color: #a3e635;
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  transition: background-color 0.2s ease;
}

.beeq-faq-wrapper .faq-cta-btn:hover {
  background-color: #bef264;
}

/* Responsive Adaptive Viewports Container Queries */
@media (max-width: 991px) {
  .beeq-faq-wrapper .faq-main-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .beeq-faq-wrapper .faq-sidebar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: stretch;
  }
  
  .beeq-faq-wrapper .sidebar-cta-card {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .beeq-faq-wrapper {
    padding: 40px 15px;
  }
  
  .beeq-faq-wrapper .faq-title {
    font-size: 32px;
  }
  
  .beeq-faq-wrapper .faq-sidebar {
    grid-template-columns: 1fr;
  }
  
  .beeq-faq-wrapper .faq-trigger {
    padding: 16px;
  }
  
  .beeq-faq-wrapper .faq-content-body {
    padding: 0 16px 16px 66px;
  }
  
  .beeq-faq-wrapper .faq-footer-cta {
    text-align: center;
    justify-content: center;
  }
  
  .beeq-faq-wrapper .faq-cta-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .beeq-faq-wrapper .faq-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
    margin-right: 10px;
  }
  
  .beeq-faq-wrapper .faq-question {
    font-size: 15px;
    padding-right: 24px;
  }
  
  .beeq-faq-wrapper .faq-content-body {
    padding: 0 16px 16px 54px;
    font-size: 14px;
  }
}
@media (max-width: 1240px) {
    .bq-landing-wrapper {
        width: 100%;
        padding: 0 15px;
    }
}