/* --- CSS Reset & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root {
    --primary-color: rgb(178, 214, 59);;
    --primary-dark: #121d26;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f9fbfd;
    --card-bg: #ffffff;
    --border-radius: 8px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}*/

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
	margin-top: 90px;
}

.section-header .subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.section-header .main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header .main-title span {
    color: var(--primary-color);
}

.section-header .description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- Process Grid Layout --- */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Handles structural alignments for asymmetrical 3-item row at the bottom */
.center-last-row {
    grid-template-columns: repeat(3, 1fr);
    max-width: 75%;
    margin: 0 auto;
}

/* Reversing the structural block ordering for visual snake-pattern simulation */
.reverse-row {
    direction: rtl;
}
.reverse-row .step-card {
    direction: ltr; /* Keeps content reading normal left-to-right */
}

/* --- Card Styles --- */
.step-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 211, 131, 0.1);
}

/* Floating Circular Icons */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border-radius: 50%;
    margin: -70px auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.step-number {
    position: absolute;
    bottom: -10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 211, 131, 0.3);
}

/* Card Typography */
.card-content h3 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.card-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Goal Banner --- */
.goal-banner {
    background: #f0faf6;
    border-radius: 5px;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(0, 211, 131, 0.15);
}

.goal-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.goal-text h2 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.goal-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 500px;
}

.goal-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    flex-shrink: 0;
}

.feature-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .process-row, .center-last-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    .reverse-row {
        direction: ltr;
    }
    .goal-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .goal-right {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .process-row, .center-last-row {
        grid-template-columns: 1fr;
    }
    .step-card {
        margin-top: 40px;
    }
    .section-header .main-title {
        font-size: 2rem;
    }
    .goal-right {
        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;
    }
}

/* Google Fonts Import to match typography */
.bqml-company-profile{
    padding:80px 20px;
    background:#f8f9f7;
    font-family:'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.bqml-container{
    max-width:1280px;
    margin:auto;
}

.bqml-badge{
    display:table;
    margin:auto;
    padding:8px 24px;
    border:1px solid #b4d93d;
    border-radius:5px;
    font-size:13px;
    letter-spacing:4px;
    color:#a7cf32;
    font-weight:600;
}

.bqml-title{
    text-align:center;
    font-size:30px;
    margin:20px 0 10px;
    line-height:1.1;
    color:#1a1a1a;
    font-weight:800;
	text-transform: uppercase;
}

.bqml-title span{
    color:#b2d63b;
}

.bqml-subtitle{
    text-align:center;
    font-size:34px;
    margin:0;
    color:#222;
}

.bqml-description{
    max-width:760px;
    margin:18px auto 55px;
    text-align:center;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

.bqml-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.bqml-card{
    background:#fff;
    border-radius:5px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    transition:.3s;
}

.bqml-card:hover{
    transform:translateY(-6px);
}

.bqml-card img{
    max-width:230px;
    width:100%;
    height:auto;
    margin:auto;
    display:block;
}

.bqml-line{
    width:60px;
    height:4px;
    background:#b2d63b;
    border-radius:30px;
    margin:25px auto;
}

.bqml-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.bqml-bottom{
    margin-top:60px;
    background:#111;
    color:#fff;
    border-radius:5px;
    padding:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;
}

.bqml-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.bqml-left img{
    width:75px;
}

.bqml-left h4{
    margin:0;
    font-size:34px;
}

.bqml-left h4 span{
    color:#b2d63b;
}

.bqml-left p{
    margin-top:10px;
    color:#d2d2d2;
    line-height:1.7;
}

.bqml-stats{
    display:flex;
    gap:45px;
    flex-wrap:wrap;
}

.bqml-stats div{
    text-align:center;
}

.bqml-stats strong{
    display:block;
    font-size:34px;
    color:#b2d63b;
    margin-bottom:8px;
}

.bqml-stats small{
    color:#ddd;
    font-size:15px;
}

/* Tablet */

@media(max-width:991px){

    .bqml-title{
        font-size:48px;
    }

    .bqml-subtitle{
        font-size:28px;
    }

    .bqml-cards{
        grid-template-columns:1fr;
    }

    .bqml-bottom{
        flex-direction:column;
        text-align:center;
    }

    .bqml-left{
        flex-direction:column;
    }

}

/* Mobile */

@media(max-width:576px){

    .bqml-company-profile{
        padding:50px 15px;
    }

    .bqml-title{
        font-size:38px;
    }

    .bqml-subtitle{
        font-size:24px;
    }

    .bqml-description{
        font-size:15px;
        margin-bottom:35px;
    }

    .bqml-card{
        padding:30px 20px;
    }

    .bqml-left h4{
        font-size:26px;
    }

    .bqml-stats{
        width:100%;
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .bqml-stats strong{
        font-size:28px;
    }

}





/* Main Scoped Parent Container */
.mkt-hero-onboarding {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #fbfdf7;
  padding: 60px 20px 40px 20px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.mkt-hero-onboarding *,
.mkt-hero-onboarding *::before,
.mkt-hero-onboarding *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.mkt-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Left Column Styling */
.mkt-content-left {
  display: flex;
  flex-direction: column;
}

.mkt-badge-top {
  align-self: flex-start;
  background-color: #f1f9e1;
  border: 1px solid #d2ed9c;
  color: #618713;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.mkt-badge-top svg {
  width: 14px;
  height: 14px;
}

.mkt-main-heading {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.mkt-main-heading .text-green {
  color: #b2d63b;
}

.mkt-main-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 35px;
}

/* Feature Cards Grid (2x2) */
.mkt-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

.mkt-feat-item {
  background: #ffffff;
  border: 1px solid #eef2e6;
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(132, 189, 25, 0.03);
}

.mkt-feat-icon {
  background-color: #f4f9e9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #b2d63b;
}

.mkt-feat-icon svg {
  width: 18px;
  height: 18px;
}

.mkt-feat-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 2px;
}

.mkt-feat-item p {
  font-size: 12px;
  color: #666666;
}

/* CTA Row styling */
.mkt-cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.mkt-btn-primary {
  background-color: #92cc16;
  color: #111;
  border: none;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s ease;
}

.mkt-btn-primary:hover {
  background-color: #81b512;
}

.mkt-btn-primary .arrow-circle {
  background: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mkt-btn-secondary {
  background: #ffffff;
  border: 1px solid #dce2d5;
  color: #333333;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mkt-btn-secondary .phone-circle {
  background: #92cc16;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.mkt-trust-shield {
  font-size: 13px;
  color: #555555;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.mkt-trust-shield .shield-check {
  color: #b2d63b;
  font-weight: 700;
}

/* Right Panel Design Elements */
.mkt-right-panel {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 480px;
}

/* Simulated illustrative elements behind the main pricing box */
.mkt-graphic-mockup {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 380px;
  z-index: 1;
}

.mkt-phone-frame {
  width: 160px;
  height: 320px;
  border: 8px solid #222;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.mkt-phone-awning {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 15px;
  background: #b2d63b;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.mkt-mock-brand {
  font-size: 16px;
  font-weight: 800;
  color: #e61b53;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.mkt-mock-brand.secondary {
  color: #1f1f1f;
  font-size: 14px;
}

.mkt-mock-box {
  position: absolute;
  bottom: 20px;
  left: -20px;
  width: 70px;
  height: 50px;
  background: #d7be99;
  border-radius: 6px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.08);
}

.mkt-mock-bag {
  position: absolute;
  bottom: 60px;
  right: 50px;
  width: 60px;
  height: 70px;
  background: #9ab95b;
  border-radius: 8px;
}

/* Black Special Offer Card */
.mkt-pricing-card {
  background-color: #12140e;
  color: #ffffff;
  border-radius: 24px;
  width: 320px;
  padding: 35px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  z-index: 2;
}

.mkt-card-badge {
  background-color: #92cc16;
  color: #11140e;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.mkt-promo-label {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 10px;
}

.mkt-old-price {
  font-size: 24px;
  color: #888888;
  text-decoration: line-through;
  font-weight: 600;
}

.mkt-down-arrow {
  color: #92cc16;
  margin: 4px 0;
  font-size: 14px;
}

.mkt-new-price {
  font-size: 48px;
  font-weight: 800;
  color: #92cc16;
  line-height: 1;
  margin-bottom: 5px;
}

.mkt-new-price span {
  display: block;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 3px;
  margin-top: 5px;
  font-weight: 700;
}

.mkt-save-banner {
  border: 1px dashed #333924;
  border-radius: 12px;
  padding: 12px;
  font-size: 12px;
  color: #b5bfa2;
  margin: 25px 0;
  line-height: 1.5;
}

.mkt-save-banner strong {
  color: #92cc16;
}

.mkt-timer-footer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  border-top: 1px solid #222619;
  padding-top: 18px;
}

.mkt-timer-footer .clock-icon {
  color: #92cc16;
  font-size: 16px;
}

.mkt-timer-footer div {
  font-size: 11px;
  line-height: 1.4;
  color: #a4a99c;
}

.mkt-timer-footer strong {
  color: #92cc16;
}

/* Bottom Metrics / Brand Split Bar */
.mkt-bottom-strip {
  background: #ffffff;
  border: 1px solid #eff3e8;
  border-radius: 16px;
  margin-top: 50px;
  padding: 25px;
}

.mkt-strip-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.mkt-strip-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  align-items: center;
  text-align: center;
}

.mkt-strip-col h4 {
  font-size: 14px;
}

.mkt-strip-col p {
  font-size: 12px;
  color: #666666;
  margin-top: 4px;
}

.border-x {
  border-left: 1px solid #eef2e6;
  border-right: 1px solid #eef2e6;
  padding: 0 10px;
}

.brand-text-myntra {
  color: #e61b53;
  font-size: 20px;
  font-weight: 800;
}

.brand-text-tata {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.shopper-icon {
  background: #f4f9e9;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

/* --- Media Queries for Responsive Handling --- */

/* Tablet views */
@media (max-width: 992px) {
  .mkt-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .mkt-right-panel {
    justify-content: center;
    min-height: auto;
  }

  .mkt-graphic-mockup {
    display: none; /* Hide complex layout illustration on smaller screens to keep focus clean */
  }

  .mkt-pricing-card {
    width: 100%;
    max-width: 450px;
  }
  
  .mkt-strip-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .border-x {
    border-left: none;
    border-right: none;
    border-top: 1px solid #eef2e6;
    border-bottom: 1px solid #eef2e6;
    padding: 15px 0;
  }
}

/* Mobile Phone views */
@media (max-width: 576px) {
  .mkt-hero-onboarding {
    padding: 40px 15px;
  }
  
  .mkt-main-heading {
    font-size: 32px;
  }
  
  .mkt-feature-grid {
    grid-template-columns: 1fr;
  }
  
  .mkt-cta-row {
    flex-direction: column;
  }
  
  .mkt-btn-primary, .mkt-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
/* --- BQ PROMISE SECTION SCOPED STYLES --- */
.bq-promise-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  color: #2d3748;
  box-sizing: border-box;
}

.bq-promise-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Layout Grid */
.bq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .bq-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  /* Vertical dividing border between columns */
  .bq-left-col {
    border-right: 1px solid #e2e8f0;
    padding-right: 40px;
  }
}

/* Left Column Styling */
.bq-subheading {
  display: inline-block;
  color: #b2d63b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.bq-subheading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: #b2d63b;
}

.bq-heading {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a202c;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .bq-heading {
    font-size: 30px;
  }
}

.bq-highlight {
  color: #b2d63b;
}

.bq-description {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 30px;
}

/* Alert Box */
.bq-alert-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #f7fee7;
  border-radius: 8px;
  padding: 15px 20px;
}

.bq-alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: 2px solid #b2d63b;
  border-radius: 50%;
  color: #b2d63b;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.bq-alert-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.4;
}

.bq-alert-text strong {
  color: #1a202c;
}

.bq-alert-text span {
  color: #4a5568;
}

/* Right Column Features */
.bq-right-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.bq-feature-item {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.bq-feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bq-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background-color: #f7fee7;
  border-radius: 50%;
  color: #b2d63b;
  flex-shrink: 0;
}

.bq-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.bq-feature-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.bq-feature-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #4a5568;
}

/* Bottom Footer Banner */
.bq-footer-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 25px;
  text-align: center;
	margin-top: 40px;
}

@media (min-width: 640px) {
  .bq-footer-banner {
    flex-direction: row;
    text-align: left;
    padding: 30px 40px;
  }
}

.bq-star-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #b2d63b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
}

.bq-star-icon svg {
  width: 22px;
  height: 22px;
}

.bq-footer-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
}

.bq-brand-name {
  color: #b2d63b;
  font-weight: 700;
}


.roi-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roi-menu li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.roi-menu li i {
    color: #b4d63b; /* BeeQ green */
    font-size: 22px;
    width: 28px;
    text-align: center;
}

.roi-menu li:hover {
    color: #111;
    transform: translateX(4px);
}

.roi-menu li:hover i {
    color: #8db21e;
}


/*--------------------------------------------  */
  /* --- 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;
  }
}


/* --- LOCAL SCOPE STRUCTURING --- */
.beeq-services-scope {
  --primary-dark: #090a0b;
  --panel-bg: #ffffff;
  --divider-line: #eaeaea;
  --highlight-color: #bdff00; /* Matching neon lime layout accents */
  --headline-color: #111416;
  --body-gray: #4d5256;
  
  background-color: #2f2c2c;
  padding: 80px 24px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  box-sizing: border-box;
}

.beeq-services-scope *,
.beeq-services-scope *::before,
.beeq-services-scope *::after {
  box-sizing: border-box;
}

.beeq-grid-container {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--panel-bg);
  border-radius: 5px;
  padding: 60px 40px;
}

/* --- TITLE AND LAYOUT HEADER --- */
.beeq-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.beeq-main-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--headline-color);
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
	text-transform: uppercase;
}

.beeq-accent-text {
  color: var(--highlight-color);
  background-color: #111416;
  padding: 4px 14px;
  border-radius: 6px;
  display: inline-block;
}

.beeq-title-underline {
  width: 50px;
  height: 4px;
  background-color: var(--highlight-color);
  margin: 0 auto;
  border-radius: 2px;
}

/* --- RECONSTRUCTING GRID FROM image_52eca5.jpg --- */
.beeq-matrix-display {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Replicating clean bordered cell junctions */
  column-gap: 24px;
  row-gap: 40px;
}

.beeq-matrix-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.beeq-item-aside {
  flex-shrink: 0;
}

.beeq-graphic-icon {
  width: 48px;
  height: 48px;
  background-color: #111416;
  color: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beeq-graphic-icon svg {
  width: 22px;
  height: 22px;
}

.beeq-item-content {
  flex-grow: 1;
}

.beeq-item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--headline-color);
  margin: 0 0 10px 0;
  line-height: 1.3;
	text-transform: uppercase;
}

.beeq-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beeq-bullet-list li {
  font-size: 13.5px;
  color: var(--body-gray);
  margin-bottom: 6px;
  position: relative;
  padding-left: 15px;
}

.beeq-bullet-list li::before {
  content: "•";
  color: var(--headline-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 16px;
}

/* --- ADAPTIVE LAYOUT MEDIA BREAKPOINTS --- */
@media (max-width: 1120px) {
  .beeq-matrix-display {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  .beeq-matrix-display {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 30px;
  }
  .beeq-grid-container {
    padding: 40px 24px;
  }
  .beeq-main-title {
    font-size: 28px;
  }
}

@media (max-width: 580px) {
  .beeq-matrix-display {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
  .beeq-services-scope {
    padding: 40px 12px;
  }
  .beeq-grid-container {
    padding: 30px 16px;
  }
}

/* --- SCOPED NAMESPACE --- */
.beeq-info-block-scope {
  --block-bg: #f9f9f9;
  --text-dark: #000000;
  --text-gray: #444444;
  --lime-accent: #a3e635; /* Crisp chartreuse/lime green matched from the icon colors */
  --border-color: #e5e5e5;
  
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 40px 16px;
  background-color: transparent;
}

.beeq-info-block-scope *,
.beeq-info-block-scope *::before,
.beeq-info-block-scope *::after {
  box-sizing: border-box;
}

/* Outer card layout matching image_528f68.jpg */
.beeq-info-container {
  max-width: 1240px;
  margin: 0 auto;
  background-color: var(--block-bg);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1.3fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* --- HEADINGS & TEXT --- */
.beeq-section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 16px 0;
  line-height: 1.25;
  letter-spacing: -0.3px;
	text-transform: uppercase;
}

.beeq-section-desc {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0 0 24px 0;
}

/* --- LEFT COLUMN PANELS --- */
.beeq-left-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.beeq-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  row-gap: 12px;
}

.beeq-check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.beeq-check-icon {
  background-color: var(--lime-accent);
  color: #111;
  font-size: 11px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.beeq-check-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Pure CSS Shield Layout Rendering */
.beeq-shield-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
}

.beeq-shield-outer {
  width: 90px;
  height: 105px;
  background: linear-gradient(135deg, #1e3a1e 0%, #0f1f0f 100%);
  border: 4px solid #b3b3b3;
  border-radius: 50% 50% 50% 50% / 15% 15% 85% 85%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.beeq-shield-inner {
  width: 72px;
  height: 85px;
  background: linear-gradient(180deg, #22c55e 0%, #15803d 100%);
  border-radius: 50% 50% 50% 50% / 15% 15% 85% 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beeq-shield-check {
  width: 32px;
  height: 32px;
}

/* --- SEPARATOR LINE --- */
.beeq-vertical-divider {
  width: 1px;
  height: 80%;
  background-color: #e0e0e0;
  align-self: center;
}

/* --- RIGHT COLUMN SEGMENTS --- */
.beeq-right-panel .beeq-section-title {
  margin-bottom: 24px;
}

.beeq-segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.beeq-segment-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.beeq-segment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}

.beeq-seg-icon {
  width: 18px;
  height: 18px;
  color: #84cc16; /* Clean theme neon line accents */
  flex-shrink: 0;
}

.beeq-desktop-br {
  display: block;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1100px) {
  .beeq-info-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .beeq-vertical-divider {
    width: 100%;
    height: 1px;
  }
  
  .beeq-desktop-br {
    display: none;
  }
}

@media (max-width: 768px) {
  .beeq-left-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .beeq-shield-graphic {
    justify-content: flex-start;
    padding-left: 0;
  }
  
  .beeq-segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .beeq-checklist {
    grid-template-columns: 1fr;
  }
  
  .beeq-segments-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .beeq-info-container {
    padding: 24px 16px;
  }
  
  .beeq-section-title {
    font-size: 22px;
  }
}
/* --- SCOPED ENCAPSULATION --- */
.beeq-channels-scope {
  --dark-bg-color: #f8f9f7;
  --card-bg-dark: #0f1112;
  --card-border-gray: #1b1e20;
  --lime-accent: #bdff00; /* Distinct neon lime styling from the file image */
  --text-white: #ffffff;
  --text-muted-gray: #9ba0a3;
  
  background-color: var(--dark-bg-color);
  padding: 50px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

.beeq-channels-scope *,
.beeq-channels-scope *::before,
.beeq-channels-scope *::after {
  box-sizing: border-box;
}

.beeq-platforms-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* --- 3-COLUMN STRUCTURE GRID --- */
.beeq-platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- CARD DESIGN SCHEME --- */
.beeq-platform-card {
  background-color: #2f2c2c;
  border: 1px solid var(--card-border-gray);
  border-radius: 5px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}

/* --- UPPER CARD SECTION --- */
.beeq-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.beeq-brand-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.beeq-brand-icon-wrap.lime-target {
  color: var(--lime-accent);
}

.beeq-brand-svg-icon {
  width: 100%;
  height: 100%;
}

.beeq-platform-heading {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  line-height: 1.3;
	text-transform: uppercase;
}

/* --- LOWER SPLIT BODY --- */
.beeq-card-split-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  
  flex-grow: 1;
}

/* --- CHECKLIST ELEMENT --- */
.beeq-feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beeq-feature-checklist li {
  font-size: 13.5px;
  color: var(--text-muted-gray);
  margin-bottom: 11px;
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.beeq-feature-checklist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: stroke solid var(--lime-accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* --- PURE CSS GRAPHICS MOCKUP DESIGN --- */
.beeq-device-frame {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

/* Laptop Elements */
.laptop-frame {
  background: #1e2224;
  border: 1px solid #2d3235;
  height: 120px;
  padding: 8px;
}
.beeq-laptop-screen {
  background: #090a0b;
  height: 100%;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.beeq-mock-chart-header {
  width: 50%;
  height: 6px;
  background: #2d3235;
  border-radius: 3px;
}
.beeq-mock-chart-line {
  width: 100%;
  height: 2px;
  background: #bdff00;
  opacity: 0.4;
}
.beeq-mock-chart-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 50px;
  margin-top: auto;
}
.beeq-mock-chart-bars span {
  flex-grow: 1;
  background: #2d3235;
  border-radius: 2px 2px 0 0;
}
.beeq-mock-chart-bars span:nth-child(1) { height: 40%; }
.beeq-mock-chart-bars span:nth-child(2) { height: 75%; background: var(--lime-accent); }
.beeq-mock-chart-bars span:nth-child(3) { height: 50%; }
.beeq-mock-chart-bars span:nth-child(4) { height: 90%; }

/* Mobile Phone Elements */
.phone-frame {
  background: #1e2224;
  border: 4px solid #2d3235;
  border-radius: 16px;
  height: 150px;
  padding: 4px;
}
.beeq-phone-screen {
  background: #020617;
  height: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  padding: 8px;
  justify-content: space-between;
}
.beeq-phone-hero-text {
  font-size: 9px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1.2;
}
.beeq-phone-building-graphic {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  height: 60px;
  border-radius: 4px;
  display: flex;
  gap: 4px;
  padding: 6px;
}
.beeq-window {
  width: 6px;
  height: 8px;
  background: var(--lime-accent);
  opacity: 0.3;
}

/* Performance Graph Elements */
.chart-frame {
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.beeq-graph-line-wrap {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 2;
}
.beeq-graph-svg {
  width: 100%;
  height: 100%;
}
.beeq-graph-bars-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  width: 100%;
  padding: 0 5px;
}
.beeq-graph-bars-wrap span {
  flex-grow: 1;
  background: rgba(189, 255, 0, 0.15);
  border: 1px solid rgba(189, 255, 0, 0.3);
  border-radius: 4px 4px 0 0;
}

/* --- DEVICE ADAPTIVE VIEWPORTS --- */
@media (max-width: 1024px) {
  .beeq-platforms-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .beeq-card-split-body {
    grid-template-columns: 1.4fr 0.6fr;
  }
  .laptop-frame, .phone-frame, .chart-frame {
    max-width: 200px;
    justify-self: end;
  }
}

@media (max-width: 540px) {
  .beeq-card-split-body {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .laptop-frame, .phone-frame, .chart-frame {
    max-width: 100%;
    height: 130px;
  }
  .beeq-platform-card {
    padding: 24px 16px;
  }
}

/* --- STYLESHEET SCOPING ROOT --- */
.beeq-faq-scope {
  --bg-main: #f8f9f7;
  --bg-card: #1f2122;
  --border-card: #282a2b;
  --lime-accent: #bdff00;
  --text-white: #ffffff;
  --text-grey: #9ca3af;
  
  background-color: var(--bg-main);
  padding: 80px 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-white);
  box-sizing: border-box;
}

.beeq-faq-scope *,
.beeq-faq-scope *::before,
.beeq-faq-scope *::after {
  box-sizing: border-box;
}

.beeq-faq-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* --- SECTION HEADER --- */
.beeq-faq-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.beeq-brand-badge {
  background-color: var(--lime-accent);
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.beeq-badge-icon {
  width: 14px;
  height: 14px;
}

.beeq-main-heading {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
	text-transform: uppercase;
}

.beeq-lime-text {
  color: var(--lime-accent);
}

.beeq-sub-heading {
  
  color: #000000;
  max-width: 600px;
  line-height: 1.5;
  margin: 0 0 20px 0;
	font-size: 24px;
    line-height: 30px;
}

.beeq-heading-line {
  width: 40px;
  height: 3px;
  background-color: var(--lime-accent);
  border-radius: 2px;
}

/* --- GRID SYSTEM STRUCTURING --- */
.beeq-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- FAQ INTERACTIVE CARD SCHEME --- */
.beeq-faq-card {
      background-color: #ffffff;
    border: 1px dotted #E3DADA;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.beeq-faq-card:hover {
  border-color: rgba(189, 255, 0, 0.4);
}

.beeq-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.beeq-faq-icon-box {
  width: 44px;
  height: 44px;
  background-color: var(--lime-accent);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beeq-faq-icon-box svg {
  width: 20px;
  height: 20px;
}

.beeq-text-icon {
  font-size: 20px;
  font-weight: 700;
}



.beeq-card-question {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px 0;
  padding-right: 40px;
	text-transform: uppercase;
}

/* --- TOGGLE BUTTONS --- */
.beeq-toggle-btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 32px;
  height: 32px;
  background-color: var(--lime-accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.beeq-btn-symbol {
  position: relative;
  width: 12px;
  height: 2px;
  background-color: #000000;
  display: block;
}

.beeq-btn-symbol::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: #000000;
  left: 5px;
  top: -5px;
  transition: transform 0.25s ease;
}

/* --- ANIMATED SMOOTH EXPANSION ACCORDION WRAPPER --- */
.beeq-card-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.beeq-card-answer-inner {
  overflow: hidden;
}

.beeq-card-answer-inner p {
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.6;
  margin: 15px 0 0 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

/* --- SYSTEM INTERACTIVE STATES --- */
.beeq-faq-card.beeq-is-open {
  border-color: var(--lime-accent);
}

.beeq-faq-card.beeq-is-open .beeq-card-answer-wrapper {
  grid-template-rows: 1fr;
}

.beeq-faq-card.beeq-is-open .beeq-toggle-btn {
  transform: rotate(135deg);
}

.beeq-faq-card.beeq-is-open .beeq-btn-symbol::before {
  transform: rotate(90deg);
}

/* --- RESPONSIVE ADAPTIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .beeq-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .beeq-main-heading {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  .beeq-faq-grid {
    grid-template-columns: 1fr;
  }
  .beeq-faq-scope {
    padding: 50px 16px;
  }
  .beeq-main-heading {
    font-size: 28px;
  }
}

/* Scoped Wrapper to isolate styles */
.bq-realestate-section {
  background-color: #2f2c2c;
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  padding: 60px 20px;
  box-sizing: border-box;
}

.bq-realestate-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bq-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Left Column Styling */
.bq-badge {
  display: inline-block;
  border: 1px solid #c2ff00;
  color: #c2ff00;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.bq-main-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
	color: #ffffff;
}

.bq-highlight {
  color: #c2ff00;
}

.bq-description {
  font-size: 15px;
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.bq-services-title {
  font-size: 16px;
  color: #c2ff00;
  font-weight: 600;
  margin-bottom: 20px;
}

.bq-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}

.bq-service-item {
  font-size: 13px;
  color: #e0e0e0;
  display: flex;
  align-items: center;
}

.bq-service-item::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #c2ff00;
  color: #000;
  font-size: 10px;
  font-weight: bold;
  border-radius: 4px;
  margin-right: 10px;
  flex-shrink: 0;
}

.bq-footer-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bq-badge-icon {
  width: 32px;
  height: 32px;
  color: #c2ff00;
  flex-shrink: 0;
}

.bq-footer-note p {
  font-size: 13px;
  color: #b3b3b3;
  line-height: 1.5;
}

.bq-footer-note strong {
  color: #fff;
}

/* Right Column & Mockup Styling */
.bq-visual-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.bq-laptop-mockup {
  width: 100%;
  max-width: 460px;
}

.bq-laptop-screen {
  background: #111;
  border: 12px solid #222;
  border-radius: 12px 12px 0 0;
  aspect-ratio: 16 / 10;
  padding: 15px;
  overflow: hidden;
}

.bq-ads-dashboard {
  background: #fff;
  height: 100%;
  border-radius: 4px;
  padding: 12px;
  color: #333;
}

.bq-dash-header {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

.bq-dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}

.bq-metric span {
  display: block;
  font-size: 8px;
  color: #666;
}

.bq-metric strong {
  font-size: 12px;
  color: #111;
}

.bq-dash-body {
  display: flex;
  gap: 10px;
  height: 50px;
}

.bq-chart-pie {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: conic-gradient(#4285F4 0% 40%, #34A853 40% 70%, #FBBC05 70% 100%);
}

.bq-chart-line {
  flex-grow: 1;
  background: linear-gradient(135deg, transparent 49%, #4285F4 50%, #4285F4 52%, transparent 53%);
  background-size: 20px 20px;
  border-bottom: 1px solid #ccc;
}

.bq-laptop-base {
  height: 8px;
  background: #444;
  border-radius: 0 0 8px 8px;
  width: 112%;
  margin-left: -6px;
}

/* Value Props Grid Styling */
.bq-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}

.bq-prop-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 16px 8px;
  text-align: center;
  transition: transform 0.2s;
}

.bq-prop-card:hover {
  transform: translateY(-4px);
  border-color: #c2ff00;
}

.bq-prop-icon {
  font-size: 20px;
  margin-bottom: 10px;
  color: #c2ff00;
}

.bq-prop-card h3 {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
}

/* Responsive Breakdown */
@media (max-width: 900px) {
  .bq-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .bq-content-col {
    order: 1;
  }
  .bq-visual-col {
    order: 2;
  }
  .bq-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Scoped namespace wrapper to shield against external CSS leaks */
.bq-meta-section {
  background-color: #2f2c2c;
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  padding: 60px 24px;
  box-sizing: border-box;
  overflow: hidden;
}

.bq-meta-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bq-meta-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Left Content Styles */
.bq-meta-badge {
  display: inline-block;
  border: 1px solid #c2ff00;
  color: #c2ff00;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.bq-meta-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
	color: #ffffff;
	text-transform: uppercase;
}

.bq-meta-highlight {
  color: #c2ff00;
}

.bq-meta-desc {
  font-size: 15px;
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

.bq-meta-subtitle {
  font-size: 16px;
  color: #c2ff00;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Formats Grid */
.bq-meta-formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.bq-format-item {
  background: #2f2c2c;
  padding: 20px 14px;
  display: flex;
  
  gap: 12px;
  font-size: 16px;
  color: #b3b3b3;
  line-height: 1.4;
}

.bq-format-item strong {
  color: #fff;
  display: block;
}

.bq-span-2 {
  grid-column: span 2;
}

/* Simple fallback custom icons mimicry */
.bq-icon-f::before { content: "📘"; font-size: 18px; }
.bq-icon-i::before { content: "📸"; font-size: 18px; }
.bq-icon-c { color: #c2ff00; font-size: 14px; }
.bq-icon-v { color: #c2ff00; }
.bq-icon-d { color: #c2ff00; }
.bq-icon-l { color: #c2ff00; }
.bq-icon-r { color: #c2ff00; }
.bq-icon-lg { color: #c2ff00; }
.bq-icon-ba { color: #c2ff00; }

/* Left Footer */
.bq-meta-footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 500px;
}

.bq-meta-award-icon {
  width: 28px;
  height: 28px;
  color: #c2ff00;
  flex-shrink: 0;
}

.bq-meta-footer p {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}

/* Right Column Visuals */
.bq-meta-visual-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  width: 100%;
}

/* Phone Mockup Styling */
.bq-phone-mockup {
  width: 260px;
  height: 520px;
  background: #000;
  border: 10px solid #2c2520;
  border-radius: 36px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.bq-phone-screen {
  background: #fff;
  height: 100%;
  color: #1c1e21;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  overflow: hidden;
}

.bq-fb-post {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bq-fb-header {
  display: flex;
  padding: 10px;
  gap: 8px;
  align-items: center;
}

.bq-fb-avatar {
  width: 28px;
  height: 28px;
  background: #365899;
  border-radius: 50%;
}

.bq-fb-name {
  font-weight: bold;
  font-size: 11px;
}

.bq-fb-sub {
  color: #606770;
  font-size: 9px;
}

.bq-fb-caption {
  padding: 0 10px 8px 10px;
  font-size: 11px;
  line-height: 1.3;
}

.bq-fb-media {
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=400&auto=format&fit=crop&q=60') center/cover;
  flex-grow: 1;
  position: relative;
  min-height: 200px;
}

.bq-fb-overlay-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
}

.bq-fb-overlay-text h3 {
  font-size: 16px;
  font-weight: bold;
}

.bq-fb-overlay-text p {
  font-size: 11px;
  opacity: 0.9;
}

.bq-fb-cta-bar {
  background: #f0f2f5;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e4e6eb;
}

.bq-cta-sub {
  font-size: 9px;
  color: #606770;
}

.bq-cta-main {
  font-weight: bold;
  font-size: 11px;
}

.bq-cta-btn {
  background: #e4e6eb;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 11px;
  cursor: pointer;
}

.bq-fb-actions {
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  color: #606770;
  font-size: 9px;
  background: #fff;
}

/* Feature Stack Cards Styling */
.bq-meta-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  max-width: 260px;
}

.bq-meta-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.bq-step-icon {
  width: 36px;
  height: 36px;
  background: rgba(194, 255, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.bq-meta-step-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* Responsive Adaptation Breakpoints */
@media (max-width: 1024px) {
  .bq-meta-formats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bq-span-2 {
    grid-column: auto;
  }
}

@media (max-width: 868px) {
  .bq-meta-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bq-meta-formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bq-meta-visual-wrapper {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bq-meta-title {
    font-size: 32px;
  }
  .bq-meta-formats-grid {
    grid-template-columns: 1fr;
  }
  .bq-meta-visual-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .bq-meta-cards-stack {
    max-width: 100%;
    width: 100%;
  }
}

/* Encapsulating Section Box wrapper */
.bm-features-section {
  background-color: #2f2c2c;
  padding: 60px 20px;
  font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
}

/* Clear margins & enforce border-box strictly inside this element tree */
.bm-features-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bm-features-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card Styling */
.bm-feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

/* Row-Align Card Icons and Headings */
.bm-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.bm-card-icon {
  width: 36px;
  height: 36px;
  color: #c2ff00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bm-card-icon svg {
  width: 100%;
  height: 100%;
}

.bm-card-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: #ffffff;
}

.bm-highlight {
  color: #c2ff00;
}

.bm-card-desc {
  font-size: 13.5px;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Custom Checklist Elements */
.bm-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.bm-checklist li {
  font-size: 13px;
  color: #e5e5e5;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.bm-checklist li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background-color: #c2ff00;
  color: #000000;
  font-size: 9px;
  font-weight: 900;
  border-radius: 4px;
  margin-right: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Paragraph Footer Details for Card 1 */
.bm-card-footer-text {
  font-size: 12.5px;
  color: #8a8a8a;
  line-height: 1.5;
  margin-top: auto;
  padding-bottom: 15px;
}

.bm-accent-line {
  width: 45px;
  height: 3px;
  background-color: #c2ff00;
  border-radius: 2px;
}

/* Third Card Specialty Illustration Positioning */
.bm-has-illustration {
  justify-content: flex-start;
}

.bm-buildings-vector {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.bm-has-illustration .bm-checklist {
  position: relative;
  z-index: 2; /* Keeps items clear over visual design lines */
}

/* Fully Responsive Breakdowns */
@media (max-width: 1024px) {
  .bm-features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Make the third card take full width if needed on tablet */
  .bm-features-container .bm-feature-card:nth-child(3) {
    grid-column: span 2;
    min-height: auto;
  }
  
  .bm-buildings-vector {
    width: 45%;
  }
}

@media (max-width: 680px) {
  .bm-features-section {
    padding: 40px 15px;
  }
  
  .bm-features-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .bm-features-container .bm-feature-card:nth-child(3) {
    grid-column: span 1;
  }
  
  .bm-feature-card {
    min-height: auto;
    padding: 24px 20px;
  }
  
  .bm-buildings-vector {
    width: 60%;
    max-width: 240px;
  }
}

/* Scoped layout wrapper container */
.bq-faq-section {
  background-color: #2f2c2c;
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Enforce rigid layout sandbox reset rules */
.bq-faq-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bq-faq-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Main Heading Typography Styling */
.bq-faq-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.bq-faq-section-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.bq-faq-highlight {
  color: #c2ff00;
}

.bq-faq-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c2ff00, transparent);
  position: relative;
}

.bq-faq-line::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #c2ff00;
  border-radius: 50%;
  top: -1.5px;
  left: 50%;
  transform: translateX(-50%);
}

/* Structural FAQ Blocks layout */
.bq-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bq-faq-fullwidth {
  grid-column: span 2;
}

/* Accordion Component Individual Card Box */
.bq-faq-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: fit-content;
	min-height: 240px;
}

.bq-faq-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  cursor: pointer;
}

/* Custom Circle Question Mark Badge Styling */
.bq-faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #c2ff00;
  border-radius: 50%;
  color: #c2ff00;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -2px;
}

.bq-faq-question {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  padding-right: 30px;
}

/* Custom UI Toggle Accordion Arrows */
.bq-faq-arrow {
  position: absolute;
  right: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(194, 255, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bq-faq-arrow::after {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1px solid #c2ff00;
  border-bottom: 1px solid #c2ff00;
  display: inline-block;
}

.bq-faq-open::after {
  transform: rotate(45deg);
  margin-top: -2px;
}

.bq-faq-close::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* Hidden container or content answer wrapper block */
.bq-faq-body {
  padding-left: 44px;
  margin-top: 12px;
}

.bq-faq-answer {
  font-size: 17px;
  color: #b3b3b3;
  line-height: 1.6;
}

/* Media Query breakpoints rules for total responsiveness */
@media (max-width: 900px) {
  .bq-faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bq-faq-fullwidth {
    grid-column: span 1;
  }
}

@media (max-width: 540px) {
  .bq-faq-section {
    padding: 40px 16px;
  }
  .bq-faq-section-title {
    font-size: 30px;
  }
  .bq-faq-card {
    padding: 18px;
  }
  .bq-faq-question {
    font-size: 20px;
  }
  .bq-faq-body {
    padding-left: 0;
    margin-top: 16px;
  }
  .bq-faq-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}


/* Scoped Wrapper Namespace to encapsulate component properties */
.bq-premium-hero {
  width: 100%;
  background-color: #2f2c2c;
  font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
  position: relative;
	padding-top: 30px;
    padding-bottom: 30px;
}

/* Local CSS Reset to ensure clean canvas inside the section */
.bq-premium-hero * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Master Responsive Layout Splitter Grid */
.bq-hero-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 540px;
  width: 100%;
}

/* Left Informational Column Structure */
.bq-hero-info-panel {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 40px 60px 20px;
  position: relative;
  z-index: 5;
}

/* Container locking down alignment matching the design layout */
.bq-hero-panel-content {
  max-width: 620px;
  width: 100%;
}

/* Main Heading Typography Styling */
.bq-hero-headline {
  font-size: 38px;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.bq-hero-accent {
  color: #80be2d; /* Vivid signature brand green */
}

.bq-hero-paragraph {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 540px;
}

/* Four Horizontal Badges Row */
.bq-hero-badges-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 24px;
}

.bq-badge-card {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bq-badge-icon {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.bq-badge-text {
  font-size: 11px;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.3;
}

/* Action Trigger Elements */
.bq-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.bq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  letter-spacing: 0.5px;
}

.bq-btn-primary {
  background-color: #80be2d;
  color: #ffffff;
  border: none;
}

.bq-btn-primary:hover {
  background-color: #4d881b;
}

.bq-btn-arrow {
  margin-left: 10px;
  font-weight: bold;
}

.bq-btn-secondary {
  background-color: transparent;
  color: #1a202c;
  border: 1px solid #cbd5e0;
}

.bq-btn-secondary:hover {
  background-color: #f7fafc;
  border-color: #a0aec0;
}

/* Right-side Graphical Frame Section with Asymmetric Angular Slice */
.bq-hero-visual-panel {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: -6%;
  z-index: 1;
}

.bq-bg-office-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Replicating the physical mock boardroom acrylic wall signboard */
.bq-office-logo-signboard {
  position: absolute;
  top: 15%;
  right: 8%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  padding: 24px 36px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

.bq-signboard-brand {
  font-size: 42px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1;
  letter-spacing: -1.5px;
}

.bq-dot-q {
  color: #8cc63f;
}

.bq-signboard-sub {
  font-size: 13px;
  font-weight: 700;
  color: #2d3748;
  letter-spacing: 5px;
  margin-top: 2px;
  margin-bottom: 12px;
}

.bq-signboard-footer {
  font-size: 9px;
  font-weight: 600;
  color: #718096;
  border-top: 1px solid #e2e8f0;
  padding-top: 8px;
  white-space: nowrap;
}

/* Responsive Adaptive Architecture Breakpoints */
@media (max-width: 1100px) {
  .bq-hero-headline {
    font-size: 32px;
  }
  .bq-hero-badges-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 900px) {
  /* Collapse asymmetric desktop grids down to an optimized single vertical layout stack */
  .bq-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .bq-hero-info-panel {
    justify-content: center;
    padding: 50px 24px;
  }
  
  .bq-hero-panel-content {
    max-width: 100%;
  }

  .bq-hero-visual-panel {
    height: 360px;
    clip-path: none;
    margin-left: 0;
  }

  .bq-office-logo-signboard {
    top: auto;
    bottom: 24px;
    right: 24px;
    padding: 16px 24px;
  }
  
  .bq-signboard-brand {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .bq-hero-headline {
    font-size: 26px;
  }
  
  .bq-hero-badges-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .bq-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .bq-btn {
    width: 100%;
  }

  .bq-hero-visual-panel {
    height: 280px;
  }

  .bq-office-logo-signboard {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

/* Scoped Main Namespace Wrapper */
.bq-services-grid-section {
  background-color: #fcfcfc;
  padding: 50px 24px;
  font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
}

/* Strict sandbox inheritance management reset */
.bq-services-grid-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Fluid responsive CSS Grid architecture layout */
.bq-grid-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Individual Card Structural Styling */
.bq-grid-card {
  background: #ffffff;
  border: 1px solid #eef0f3;
  border-radius: 5px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Soft hover animation matching premium layouts */
.bq-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: #dbe0e8;
}

/* Icon Wrap Box Centering styling rules */
.bq-card-icon-wrap {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bq-svg-brand {
  width: 36px;
  height: 36px;
}

.bq-emoji-icon {
  font-size: 32px;
  line-height: 1;
}

/* Typography Headings formatting rules */
.bq-card-heading {
  font-size: 13.5px;
  font-weight: 700;
  color: #0b1424;
  line-height: 1.4;
  letter-spacing: 0.25px;
  margin-bottom: 14px;
  min-height: 38px; /* Holds line uniformity across elements */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content paragraph text layout */
.bq-card-body-text {
  font-size: 12.5px;
  color: #4e5d78;
  line-height: 1.55;
  max-width: 240px;
}

/* Adaptive Viewports Breakpoints overrides */
@media (max-width: 1120px) {
  /* Shifts grid into a balanced multi-row structure on mid-size tablet displays */
  .bq-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 840px) {
  .bq-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .bq-services-grid-section {
    padding: 35px 16px;
  }
  .bq-grid-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bq-grid-card {
    padding: 24px 16px;
  }
  .bq-card-heading {
    min-height: auto;
  }
}
/* Scoped Wrapper Namespace to encapsulate components */
.bq-dev-choice-section {
  background-color: #fcfcfc;
  padding: 60px 20px;
  font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
  width: 100%;
}

/* Local block sandboxing rules reset */
.bq-dev-choice-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bq-choice-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Section Title Formatting */
.bq-choice-main-title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #0b1424;
  letter-spacing: 0.5px;
  margin-bottom: 35px;
}

.bq-title-highlight {
  color: #60a624; /* Signature brand green */
}

/* Fluid Horizontal Grid Arrangement */
.bq-choice-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

/* Card Element Structural Boundary Rules */
.bq-choice-card {
  background: #ffffff;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid #eef0f4;
  transition: background-color 0.2s ease;
}

.bq-choice-card:last-child {
  border-right: none;
}

.bq-choice-card:hover {
  background-color: #f9fbf7;
}

/* Left-aligned Vector Icon Mockups */
.bq-card-icon {
  font-size: 24px;
  color: #60a624;
  line-height: 1;
}

.bq-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Typography elements */
.bq-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #0b1424;
  line-height: 1.35;
}

.bq-card-text {
  font-size: 11.5px;
  color: #55637d;
  line-height: 1.45;
}

/* Responsive Overrides across Viewport Breakpoints */
@media (max-width: 1100px) {
  .bq-choice-grid {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 12px;
  }
  .bq-choice-card {
    border-bottom: 1px solid #eef0f4;
  }
  .bq-choice-grid .bq-choice-card:nth-child(3),
  .bq-choice-grid .bq-choice-card:nth-child(6) {
    border-right: none;
  }
  .bq-choice-grid .bq-choice-card:nth-child(4),
  .bq-choice-grid .bq-choice-card:nth-child(5),
  .bq-choice-grid .bq-choice-card:nth-child(6) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .bq-choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bq-choice-card {
    border-right: 1px solid #eef0f4 !important;
    border-bottom: 1px solid #eef0f4 !important;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
  }
  .bq-choice-grid .bq-choice-card:nth-child(2n) {
    border-right: none !important;
  }
  .bq-choice-grid .bq-choice-card:nth-child(5),
  .bq-choice-grid .bq-choice-card:nth-child(6) {
    border-bottom: none !important;
  }
}

@media (max-width: 480px) {
  .bq-dev-choice-section {
    padding: 40px 16px;
  }
  .bq-choice-main-title {
    font-size: 17px;
    margin-bottom: 24px;
  }
  .bq-choice-grid {
    grid-template-columns: 1fr;
    border: none;
    background: transparent;
    gap: 12px;
  }
  .bq-choice-card {
    border: 1px solid #eef0f4 !important;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
    padding: 16px;
  }
}



/* Main Isolated Section Namespace Wrapper */
.bq-hyperlocal-grid-section {
  background-color: #fcfcfc;
  padding: 50px 20px;
  font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
  width: 100%;
}

/* Local sandbox baseline elements reset pattern */
.bq-hyperlocal-grid-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bq-hl-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Primary Section Title Text Header */
.bq-hl-section-title {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #0b1424;
  letter-spacing: 0.75px;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Highly flexible fluid multi-column arrangement grid */
.bq-hl-badges-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
  width: 100%;
}

/* Individual Badge Card Panel styling layout box rules */
.bq-hl-badge-card {
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 5px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 12px;
  min-height: 125px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Elegant visual micro-interactions */
.bq-hl-badge-card:hover {
  transform: translateY(-2px);
  border-color: #60a624; /* Subtle line match color with logo palette branding */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

/* Vector Graphic Box Frame */
.bq-hl-icon-box {
  font-size: 24px;
  color: #60a624;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Clean Label Formatting */
.bq-hl-label {
  font-size: 11px;
  font-weight: 700;
  color: #111a2c;
  line-height: 1.35;
  word-wrap: break-word;
}

/* Responsive Adaptive CSS Overrides across viewport sizes */
@media (max-width: 1200px) {
  /* Scales layout rows fluidly into balanced blocks on notebook displays */
  .bq-hl-badges-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  /* Balanced multi-column view on tablet viewports */
  .bq-hl-badges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .bq-hl-badge-card {
    min-height: auto;
    padding: 14px 10px;
  }
}

@media (max-width: 480px) {
  .bq-hyperlocal-grid-section {
    padding: 35px 16px;
  }
  
  .bq-hl-section-title {
    font-size: 15px;
    margin-bottom: 22px;
  }

  /* Two column block format layout optimizations for handheld screens */
  .bq-hl-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .bq-hl-badge-card {
    padding: 14px 8px;
    gap: 10px;
  }
  
  .bq-hl-label {
    font-size: 10.5px;
  }
}
/* Scoped Wrapper Class to isolate styles completely from host site */
.bq-leadgen-dashboard-section {
  background-color: #222222; /* Dark theme outer background */
  padding: 60px 24px;
  
  box-sizing: border-box;
  width: 100%;
}

/* Localized clean box reset rules */
.bq-leadgen-dashboard-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bq-dashboard-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Main Dashboard Header Text Styles */
.bq-dashboard-header {
  text-align: center;
  margin-bottom: 40px;
}

.bq-main-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.bq-sub-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.bq-accent-text {
  color: #a3e635; /* Bright lime green accent */
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.bq-pill-badge {
  background-color: #444444;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 4px;
  border: 1px solid #555555;
  letter-spacing: 0.5px;
}

/* Replicating the 3x2 Dashboard Core Layout Grid */
.bq-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

/* Individual Content Blocks Structure styling */
.bq-dashboard-card {
  background: #ffffff;
  border-radius: 5px;
  padding: 30px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

/* Image Card Overrides */
.bq-image-card {
  padding: 0;
  overflow: hidden;
  background-color: #1a2c38; /* Background match for image depth */
}

.bq-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dashboard List Content Styling */
.bq-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
  letter-spacing: 0.25px;
}

.bq-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bq-card-list li {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

/* Circular green checkmark natively using pure CSS */
.bq-card-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1.5px solid #84cc16;
  color: #84cc16;
  font-size: 10px;
  font-weight: 900;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Adaptive Media Query Rules across standard breakpoints */
@media (max-width: 1024px) {
  .bq-dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .bq-main-title {
    font-size: 30px;
  }
  
  .bq-accent-text, .bq-pill-badge {
    font-size: 18px;
  }
}

@media (max-width: 680px) {
  .bq-leadgen-dashboard-section {
    padding: 40px 16px;
  }
  
  .bq-dashboard-header {
    margin-bottom: 28px;
  }
  
  .bq-main-title {
    font-size: 24px;
  }
  
  .bq-sub-title-row {
    flex-direction: column;
    gap: 6px;
  }

  .bq-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .bq-image-card {
    height: 320px; /* Limit portrait heights on small handheld containers */
  }
  
  .bq-dashboard-card {
    padding: 24px 20px;
  }
  
  .bq-card-title {
    margin-bottom: 16px;
  }
}



/* Scoped Wrapper to avoid style bleeding */
.beeq-faq-section {
  color: #333333;
  background-color: #fcfdfc;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
	margin-bottom: 50px;
	padding: 20px;
}

.beeq-faq-section * {
  box-sizing: border-box;
}

/* HEADER STYLE */
.beeq-faq-section .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 3px solid #6cb33f;
  padding-bottom: 20px;
}

.beeq-faq-section .header-left {
  flex: 1;
  min-width: 280px;
}

.beeq-faq-section .logo {
  margin-bottom: 15px;
}

.beeq-faq-section .logo-main {
  font-size: 28px;
  font-weight: 800;
  color: #03234b;
}

.beeq-faq-section .logo-sub {
  font-size: 14px;
  letter-spacing: 2px;
  color: #6cb33f;
  display: block;
  margin-top: -5px;
}

.beeq-faq-section .logo-tagline {
  font-size: 9px;
  letter-spacing: 1px;
  color: #777;
}

.beeq-faq-section .faq-title {
  font-size: 36px;
  font-weight: 800;
  color: #03234b;
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.beeq-faq-section .question-badge {
  background-color: #6cb33f;
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

.beeq-faq-section .faq-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #03234b;
  margin: 0 0 10px 0;
}

.beeq-faq-section .highlight-green {
  color: #6cb33f;
}

.beeq-faq-section .faq-desc {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* HEADER BADGE */
.beeq-faq-section .header-right {
  display: flex;
  justify-content: flex-end;
  min-width: 250px;
}

.beeq-faq-section .roi-badge {
  background-color: #03234b;
  color: white;
  padding: 15px 25px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(3, 35, 75, 0.2);
}

.beeq-faq-section .badge-icon {
  font-size: 30px;
  background: rgba(25px, 255px, 255px, 0.1);
  padding: 10px;
  border-radius: 50%;
}

.beeq-faq-section .badge-text p {
  margin: 3px 0;
  font-size: 14px;
  font-weight: 600;
}

/* GRID SETUP */
.beeq-faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 11fr);
  gap: 25px;
  margin-bottom: 40px;
}

/* CARD SETUP */
.beeq-faq-section .faq-card {
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

.beeq-faq-section .faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.beeq-faq-section .card-number {
  position: absolute;
  top: -12px;
  left: 15px;
  background-color: #6cb33f;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.beeq-faq-section .card-icon {
  font-size: 24px;
  margin-top: 5px;
  min-width: 100px;
  text-align: center;
}

.beeq-faq-section .card-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #03234b;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.beeq-faq-section .card-content p {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* For list format in Item 03 */
.beeq-faq-section .card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.beeq-faq-section .card-list li {
  font-size: 12px;
  color: #555;
  position: relative;
  padding-left: 12px;
}

.beeq-faq-section .card-list li::before {
  content: "•";
  color: #6cb33f;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* FOOTER BAR */
.beeq-faq-section .faq-footer {
  background-color: #03234b;
  color: white;
  padding: 15px 20px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.beeq-faq-section .footer-item {
  font-size: 13px;
  font-weight: 600;
}

.beeq-faq-section .footer-logo {
  font-weight: bold;
  font-size: 16px;
  border-left: 2px solid #6cb33f;
  padding-left: 10px;
}

.beeq-faq-section .footer-logo small {
  display: block;
  font-size: 8px;
  color: #6cb33f;
  letter-spacing: 1px;
}

/* RESPONSIVENESS MEDIA QUERIES */
@media (max-width: 992px) {
  .beeq-faq-section .faq-grid {
    grid-template-columns: 1fr; /* Switch to single column on tablets/mobile */
  }
}

@media (max-width: 600px) {
  .beeq-faq-section .faq-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .beeq-faq-section .header-right {
    justify-content: flex-start;
    width: 100%;
  }
  .beeq-faq-section .faq-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .beeq-faq-section .card-list {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   SCOPED STYLES � every rule is namespaced under .hqpl-section
   so nothing here can leak into, or be overridden by, your
   site's existing CSS. Safe to paste this whole block into
   any page.
   ========================================================= */

.hqpl-section, .hqpl-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  list-style: none;
}

.hqpl-section {
  --hqpl-ink:#16210f;
  --hqpl-green:#7CB518;
  --hqpl-green-dark:#5c8a10;
  --hqpl-green-pale:#e9f3da;
  --hqpl-navy:#10140d;
  --hqpl-grey:#5b6358;
  --hqpl-line: rgba(22,33,15,0.09);
  --hqpl-card:#ffffff;
  --hqpl-bg:#f7f9f2;
  --hqpl-radius:16px;

  position: relative;
  background: var(--hqpl-bg);
  color: var(--hqpl-ink);
  padding: 64px 0 0;
  overflow-x: hidden;
  isolation: isolate;
}

.hqpl-section .hqpl-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .hqpl-section .hqpl-container { padding: 0 20px; }
}

/* faint background blobs */
.hqpl-section .hqpl-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,181,24,0.10) 0%, rgba(124,181,24,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hqpl-section .hqpl-blob-1 { width: 520px; height: 520px; top: -120px; left: -160px; }
.hqpl-section .hqpl-blob-2 { width: 460px; height: 460px; bottom: 10%; right: -160px; }

/* =================== TOP GRID =================== */
.hqpl-section .hqpl-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 56px;
}
@media (max-width: 980px) {
  .hqpl-section .hqpl-top-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* --- badge --- */
.hqpl-section .hqpl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hqpl-card);
  border: 1px solid var(--hqpl-line);
  border-radius: 5px;
  padding: 9px 18px 9px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hqpl-ink);
  box-shadow: 0 2px 10px rgba(22,33,15,0.05);
  margin-bottom: 26px;
}
.hqpl-section .hqpl-badge .hqpl-badge-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--hqpl-green-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hqpl-section .hqpl-badge .hqpl-badge-icon svg { width: 12px; height: 12px; stroke: var(--hqpl-green-dark); }
.hqpl-section .hqpl-badge .hqpl-accent { color: var(--hqpl-green-dark); }

/* --- headline --- */
.hqpl-section h2.hqpl-title {
  
  font-weight: 700;
  font-size: clamp(1.9rem, 3.1vw, 2.65rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  max-width: 16ch;
}
.hqpl-section h2.hqpl-title .hqpl-title-green { color: var(--hqpl-green-dark); display: block; }
.hqpl-section .hqpl-title-rule {
  width: 54px; height: 4px;
  background: var(--hqpl-green);
  border-radius: 3px;
  margin: 18px 0 22px;
}
.hqpl-section .hqpl-lede {
  color: var(--hqpl-grey);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 30px;
}

/* --- stat cards row --- */
.hqpl-section .hqpl-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 560px) {
  .hqpl-section .hqpl-stats-row { grid-template-columns: 1fr; }
}
.hqpl-section .hqpl-stat-card {
  background: var(--hqpl-card);
  border: 1px solid var(--hqpl-line);
  border-radius: 5px;
  padding: 18px 16px;
  box-shadow: 0 2px 10px rgba(22,33,15,0.04);
}
.hqpl-section .hqpl-stat-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--hqpl-green-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

.hqpl-section .hqpl-stat-icon svg { width: 20px; height: 20px; stroke: var(--hqpl-green-dark); }
.hqpl-section .hqpl-stat-num {
  
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--hqpl-green-dark);
  line-height: 1.1;
  margin-bottom: 2px;
}
.hqpl-section .hqpl-stat-label {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--hqpl-ink);
  margin-bottom: 6px;
}
.hqpl-section .hqpl-stat-desc {
  font-size: 0.78rem;
  color: var(--hqpl-grey);
  line-height: 1.4;
}

/* =================== RIGHT: VISUAL SCENE =================== */
.hqpl-section .hqpl-scene {
  position: relative;
  min-height: 380px;
  margin-top: 28px;
  padding-bottom: 56px;
}

.hqpl-section .hqpl-scene-img-wrap {
  position: relative;
 
  overflow: hidden;
  
}
.hqpl-section .hqpl-scene-img-wrap svg { width: 100%; height: auto; display: block; }

/* funnel column to the right of the scene, on larger screens it sits beside */
.hqpl-section .hqpl-funnel-wrap {
  position: absolute;
  top: -10%;
  right: -2%;
  width: 30%;
  z-index: 2;
}
.hqpl-section .hqpl-funnel-wrap svg { width: 100%; height: auto; display: block; }

@media (max-width: 980px) {
  .hqpl-section .hqpl-funnel-wrap { display: none; }
}

/* floating tag cards over the scene */
.hqpl-section .hqpl-float-tag {
  position: absolute;
  background: var(--hqpl-card);
  border: 1px solid var(--hqpl-line);
  border-radius: 5px;
  padding: 10px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(22,33,15,0.10);
  z-index: 3;
  max-width: 200px;
}
.hqpl-section .hqpl-float-tag .hqpl-tag-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--hqpl-green-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hqpl-section .hqpl-float-tag .hqpl-tag-icon svg { width: 15px; height: 15px; stroke: var(--hqpl-green-dark); }
.hqpl-section .hqpl-float-tag .hqpl-tag-title {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--hqpl-ink);
  line-height: 1.25;
  margin-bottom: 2px;
}
.hqpl-section .hqpl-float-tag .hqpl-tag-desc {
  font-size: 0.72rem;
  color: var(--hqpl-grey);
  line-height: 1.35;
}

.hqpl-section .hqpl-tag-crm { bottom: -10%; left: -5%; }
.hqpl-section .hqpl-tag-verified { bottom: -10%; right: -2%; }
.hqpl-section .hqpl-tag-check {
  position: absolute;
  bottom: -4%;
  right: 50%;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--hqpl-card);
  border: 3px solid var(--hqpl-green-pale);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(22,33,15,0.12);
  z-index: 4;
}
.hqpl-section .hqpl-tag-check svg { width: 16px; height: 16px; stroke: var(--hqpl-green-dark); }

@media (max-width: 980px) {
  .hqpl-section .hqpl-tag-crm { left: 0; bottom: -10%; }
  .hqpl-section .hqpl-tag-verified { right: 0; bottom: -10%; }
  .hqpl-section .hqpl-tag-check { display: none; }
  .hqpl-section .hqpl-scene { padding-bottom: 90px; }
}
@media (max-width: 560px) {
  .hqpl-section .hqpl-float-tag { position: static; max-width: none; margin-top: 12px; width: 100%; }
  .hqpl-section .hqpl-tag-crm, .hqpl-section .hqpl-tag-verified { position: static; }
  .hqpl-section .hqpl-scene { padding-bottom: 0; }
}

/* =================== PROCESS SECTION =================== */
.hqpl-section .hqpl-process-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hqpl-section .hqpl-process-head .hqpl-rule-line {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hqpl-green) 60%, var(--hqpl-green));
}
.hqpl-section .hqpl-process-head .hqpl-rule-line.hqpl-rule-right {
  background: linear-gradient(90deg, var(--hqpl-green), var(--hqpl-green) 40%, transparent);
}
.hqpl-section .hqpl-process-head .hqpl-rule-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--hqpl-green);
  background: var(--hqpl-bg);
  flex-shrink: 0;
}
.hqpl-section .hqpl-process-head h3 {
  
  font-weight: 700;
  font-size: 1.45rem;
  white-space: nowrap;
}

.hqpl-section .hqpl-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
@media (max-width: 1100px) { .hqpl-section .hqpl-process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .hqpl-section .hqpl-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .hqpl-section .hqpl-process-grid { grid-template-columns: 1fr; } }

.hqpl-section .hqpl-pcard {
  background: var(--hqpl-card);
  border: 1px solid var(--hqpl-line);
  border-radius: 5px;
  padding: 22px 18px;
  box-shadow: 0 2px 10px rgba(22,33,15,0.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hqpl-section .hqpl-pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(22,33,15,0.10);
  border-color: rgba(124,181,24,0.4);
}
.hqpl-section .hqpl-pcard-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--hqpl-green-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.hqpl-section .hqpl-pcard-icon svg { width: 21px; height: 21px; stroke: var(--hqpl-green-dark); fill: none; }
.hqpl-section .hqpl-pcard h4 {
 
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.3;
  margin-bottom: 9px;
  color: var(--hqpl-ink);
}
.hqpl-section .hqpl-pcard p {
  font-size: 0.81rem;
  color: var(--hqpl-grey);
  line-height: 1.5;
  margin-bottom: 14px;
}
.hqpl-section .hqpl-pcard-rule {
  width: 28px; height: 3px;
  background: var(--hqpl-green);
  border-radius: 2px;
}

/* =================== BOTTOM CTA BAR =================== */
.hqpl-section .hqpl-cta-bar {
  background: var(--hqpl-navy);
  border-radius: 5px;
  padding: 30px 36px;
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 64px;
}
@media (max-width: 980px) {
  .hqpl-section .hqpl-cta-bar { grid-template-columns: 1fr; gap: 26px; text-align: center; }
}

.hqpl-section .hqpl-cta-msg {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 980px) { .hqpl-section .hqpl-cta-msg { flex-direction: column; align-items: center; text-align: center; } }
.hqpl-section .hqpl-cta-rocket {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--hqpl-green-pale);
  border: 2px solid rgba(124,181,24,0.5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hqpl-section .hqpl-cta-rocket svg { width: 24px; height: 24px; stroke: var(--hqpl-green-dark); }
.hqpl-section .hqpl-cta-msg p {
  color: #d7ddd2;
  font-size: 0.92rem;
  line-height: 1.55;
}
.hqpl-section .hqpl-cta-msg p .hqpl-highlight { color: var(--hqpl-green); font-weight: 600; }

.hqpl-section .hqpl-cta-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 600px) { .hqpl-section .hqpl-cta-icons { gap: 18px; flex-wrap: wrap; } }
.hqpl-section .hqpl-cta-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
	width:25%;
}
.hqpl-section .hqpl-cta-icon-item svg { width: 26px; height: 26px; stroke: var(--hqpl-green); }
.hqpl-section .hqpl-cta-icon-item span {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.hqpl-section .hqpl-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 980px) { .hqpl-section .hqpl-cta-action { align-items: center; } }
.hqpl-section .hqpl-cta-btn {
  background: var(--hqpl-green);
  color: var(--hqpl-navy);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  border-radius: 10px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}
.hqpl-section .hqpl-cta-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.hqpl-section .hqpl-cta-btn svg { width: 16px; height: 16px; }
.hqpl-section .hqpl-cta-tag {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .hqpl-section * { transition: none !important; }
}



/* Scoped main wrapper to isolate styles */
.beeq-hero-section {
  background-color: #1a1a1a;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.beeq-hero-section * {
  box-sizing: border-box;
}

.beeq-hero-section .hero-container {
  max-width: 1240px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* LEFT COLUMN TEXT ELEMENTS */
.beeq-hero-section .hero-left {
  color: #ffffff;
}

.beeq-hero-section .hero-tagline {
  color: #79b93c;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 15px;
}

.beeq-hero-section .hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px 0;
	color: #ffffff;
}

.beeq-hero-section .highlight-green {
  color: #79b93c;
  display: block;
}

.beeq-hero-section .hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 550px;
}

/* FEATURES GRID BAR */
.beeq-hero-section .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border-top: 1px solid #333333;
  padding-top: 30px;
}

.beeq-hero-section .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.beeq-hero-section .feature-icon {
  font-size: 24px;
  color: #79b93c;
}

.beeq-hero-section .feature-text {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
	text-transform: uppercase;
}

/* RIGHT COLUMN VISUALS WITH ABSOLUTE OVERLAYS */
.beeq-hero-section .hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.beeq-hero-section .image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3.4;
}

.beeq-hero-section .main-building-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

/* FLOATING STAT CARDS DESIGN */
.beeq-hero-section .stat-card {
  position: absolute;
  background: #ffffff;
  border-radius: 5px;
  padding: 12px 16px;
  min-width: 130px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.beeq-hero-section .stat-title {
  font-size: 11px;
  font-weight: 700;
  color: #555555;
  margin-bottom: 4px;
}

.beeq-hero-section .stat-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.beeq-hero-section .stat-number {
  font-size: 22px;
  font-weight: 800;
  color: #111111;
}

.beeq-hero-section .stat-trend {
  font-size: 10px;
  font-weight: 700;
}

.beeq-hero-section .trend-up {
  color: #79b93c;
}

.beeq-hero-section .trend-down {
  color: #79b93c; /* Matches original layout color choices */
}

.beeq-hero-section .stat-period {
  font-size: 9px;
  color: #888888;
  margin-top: 2px;
}

/* FLOATING PLACEMENT MAP */
.beeq-hero-section .card-leads {
  top: 10%;
  left: -8%;
}

.beeq-hero-section .card-cpl {
  top: 20%;
  right: -6%;
}

.beeq-hero-section .card-conversion {
  bottom: 12%;
  right: -4%;
}

/* BOTTOM SEARCH PILL OVERLAY */
.beeq-hero-section .search-overlay {
  position: absolute;
  bottom: -6%;
  left: 5%;
  width: 90%;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.beeq-hero-section .search-icon {
  font-size: 16px;
  color: #666666;
}

.beeq-hero-section .search-text {
  font-size: 13px;
  color: #333333;
  font-weight: 600;
}

/* RESPONSIVE MEDIA BREAKPOINTS */
@media (max-width: 992px) {
  .beeq-hero-section .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .beeq-hero-section .hero-left {
    text-align: center;
  }

  .beeq-hero-section .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .beeq-hero-section .feature-item {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .beeq-hero-section {
    padding: 40px 15px;
  }

  .beeq-hero-section .hero-title {
    font-size: 32px;
  }

  .beeq-hero-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Adjust floating card metrics to keep visual stability on small devices */
  .beeq-hero-section .image-wrapper {
    max-width: 100%;
    margin: 0 10px;
  }

  .beeq-hero-section .stat-card {
    padding: 8px 12px;
    min-width: 110px;
  }

  .beeq-hero-section .stat-number {
    font-size: 18px;
  }

  .beeq-hero-section .card-leads {
    left: -2%;
  }

  .beeq-hero-section .card-cpl {
    right: -2%;
  }

  .beeq-hero-section .card-conversion {
    bottom: 15%;
    right: -2%;
  }
}

/* Isolated Scoping and Base Styling Variables */
/* Isolated Scoping and Base Styling Variables */
.amz-audit-section {
  --amz-primary: #8bc34a;
  --amz-primary-dark: #689f38;
  --amz-text-dark: #111111;
  --amz-text-muted: #555555;
  --amz-bg-light: #fafdf6;
  --amz-border-color: #e2e8f0;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
	padding-left:20px;
	padding-right:20px;
}

.amz-audit-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.amz-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Form comes first naturally on small screens */
  gap: 80px;
}

/* --- Left Content Column Styling --- */
.amz-col-content {
  display: flex;
  flex-direction: column;
 
}

.amz-tagline {
  font-size: 11px;
  font-weight: 700;
  color: var(--amz-primary-dark);
  background-color: #f1f8e9;
  padding: 6px 12px;
  border-radius: 4px;
  align-self: flex-start;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.amz-main-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--amz-text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.amz-main-title .amz-highlight {
  display: block;
  color: var(--amz-primary);
  margin-top: 8px;
}

.amz-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--amz-text-muted);
  margin-bottom: 30px;
}

.amz-features-list {
  list-style: none;
  margin-bottom: 35px;
}

.amz-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--amz-text-dark);
  margin-bottom: 14px;
}

.amz-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: var(--amz-primary);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

.amz-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.amz-btn-primary, .amz-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.amz-btn-primary {
  background-color: a7e137; /* Exact match for lime/green asset color styling */
  background: linear-gradient(135deg, #aadd22 0%, #88cc11 100%);
  color: #111;
  box-shadow: 0 4px 15px rgba(136, 204, 17, 0.2);
}

.amz-btn-primary:hover {
  transform: translateY(-2px);
}

.amz-btn-secondary {
  background-color: transparent;
  color: var(--amz-text-dark);
  border: 1.5px solid var(--amz-text-dark);
}

.amz-btn-secondary svg {
  width: 18px;
  height: 18px;
}

.amz-btn-secondary:hover {
  background-color: #f8fafc;
}

/* --- Lead Form Component Card Styling --- */
.amz-col-form {
  width: 100%;
}

.amz-audit-card {
  background-color: #ffffff;
  border: 1px solid var(--amz-border-color);
  border-radius: 5px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.amz-card-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.amz-badge-icon {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #f1f8e9 0%, #e8f5e9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amz-badge-icon svg {
  width: 26px;
  height: 26px;
  color: var(--amz-primary-dark);
}

.amz-header-text h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--amz-text-dark);
  line-height: 1.2;
}

.amz-header-text h2 span {
  color: var(--amz-primary-dark);
}

.amz-header-text p {
  font-size: 13px;
  color: var(--amz-text-muted);
  margin-top: 4px;
}

/* Form Fields */
.amz-audit-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.amz-form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.amz-input-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.amz-input-icon {
  position: absolute;
  left: 14px;
  font-size: 16px;
  opacity: 0.6;
  pointer-events: none;
}

.amz-audit-form input,
.amz-audit-form select,
.amz-audit-form textarea ,.nice-select {
  width: 100%;
  
  font-size: 14px;
  border: 1px solid var(--amz-border-color);
  border-radius: 5px;
  background-color: #fafafa;
  
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
    height: 65px;
 align-items: center;   
align-content: center;
    padding-left: 45px;
        position: relative;

}

.amz-audit-form input:focus,
.amz-audit-form select:focus,
.amz-audit-form textarea:focus {
  border-color: var(--amz-primary);
  background-color: #fff;
}

.amz-audit-form textarea {
  height: 90px;
  resize: vertical;
}

.amz-security-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #fbc02d10;
  border: 1px solid #fbc02d30;
  padding: 12px;
  border-radius: 5px;
}

.amz-shield-icon {
  font-size: 16px;
  margin-top: 2px;
}

.amz-security-note strong {
  font-size: 12px;
  color: #f57f17;
  display: block;
}

.amz-security-note p {
  font-size: 11px;
  color: var(--amz-text-muted);
  margin-top: 2px;
}

.amz-submit-btn {
  background: linear-gradient(90deg, #7cb342 0%, #558b2f 100%);
  color: #ffffff;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.2s;
}

.amz-submit-btn:hover {
  opacity: 0.95;
}

/* Trust Elements Footer */
.amz-trust-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed var(--amz-border-color);
}

.amz-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.amz-trust-icon {
  font-size: 18px;
}

.amz-trust-item strong {
  display: block;
  font-size: 13px;
  color: var(--amz-text-dark);
}

.amz-trust-item p {
  font-size: 11px;
  color: var(--amz-text-muted);
}

/* --- Responsive Breakpoints --- */

/* Small tablets / Large phones */
@media (min-width: 576px) {
  .amz-form-row {
    flex-direction: row;
  }
  .amz-form-row .amz-input-group {
    flex: 1;
  }
  .amz-trust-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop Screen Sizes */
@media (min-width: 992px) {
  .amz-audit-section {
    padding: 80px 0px;
  }
  .amz-container {
    flex-direction: row-reverse; /* Flips placement so text is Left, form is Right on Desktop */
   
    gap: 60px;
  }
  .amz-col-content, .amz-col-form {
    flex: 1;
    width: 50%;
  }
  .amz-main-title {
    font-size: 46px;
  }
  .amz-audit-card {
    padding: 20px;
  }
}

/* Isolated Scoping and Stylesheet Variables */
.amz-features-grid-section {
  --amz-icon-color: #7cb342; /* Lime/Green theme */
  --amz-title-color: #111111;
  --amz-subtitle-color: #555555;
  --amz-divider-color: #e2e8f0;
  
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin-top: 80px ;
	padding: 20px 00px;
  background-color: #fafaf9;
	border-radius: 5px;
	margin-bottom: 80px ;
}

.amz-features-grid-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base Responsive Mobile layout: Stack items vertically */
.amz-grid-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.amz-grid-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

/* Feature Icons Styling */
.amz-grid-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amz-grid-icon svg {
  width: 100%;
  height: 100%;
  color: var(--amz-icon-color);
}

/* Text Formatting */
.amz-grid-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--amz-title-color);
  line-height: 1;
  
}

.amz-grid-content p {
  font-size: 14px;
  color: var(--amz-subtitle-color);
  font-weight: 400;
  line-height: 15px;
}

/* --- Responsive Breakpoints --- */

/* Tablets and Up (Transforms into the 2x2 grid with exact layout lines) */
@media (min-width: 768px) {
  .amz-grid-container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 40px;
  }
  
  /* Adds the clean gray vertical divider lines between columns */
  .amz-grid-container .amz-grid-item:nth-child(even) {
    border-left: 1px solid var(--amz-divider-color);
   
  }
}

/* Desktop and Larger Viewports */
@media (min-width: 1024px) {
  .amz-grid-container {
    column-gap: 40px;
  }
}


/* Isolated Scoping Wrapper */
.amz-services-section {
  --amz-green-light: #8bc34a;
  --amz-green-bg: #fafdf6;
  --amz-text-black: #111111;
  --amz-text-gray: #555555;
  --amz-card-border: #f0f4f8;
  
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #fafafa;
  padding: 60px 20px;
  box-sizing: border-box;
}

.amz-services-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.amz-services-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header Text Styles */
.amz-services-header {
  text-align: center;
  margin-bottom: 40px;
}

.amz-services-tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--amz-green-light);
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.amz-services-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--amz-text-black);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.3;
}

/* Responsive Grid Base: Single-column on small screens */
.amz-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Service Card Container */
.amz-service-card {
  background-color: #ffffff;
  border: 1px solid var(--amz-card-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amz-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

/* Card Icons */
.amz-card-icon {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #f1f8e9 0%, #e8f5e9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amz-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--amz-green-light);
}

/* Card Content Typography */
.amz-card-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--amz-text-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.amz-card-text p {
  font-size: 13.5px;
  color: var(--amz-text-gray);
  line-height: 1.5;
}

/* --- Responsive Layout Breakpoints --- */

/* Tablets and Medium Devices: 2 Columns */
@media (min-width: 640px) {
  .amz-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amz-services-title {
    font-size: 32px;
  }
}

/* Large Screens & Desktops: 3 Columns */
@media (min-width: 1024px) {
  .amz-services-section {
    padding: 80px 40px;
  }
  .amz-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .amz-service-card {
    padding: 30px 24px;
  }
}

/* Isolated Structural Namespace */
.beeq-why-choose-us-section {
  --beeq-lime: #a7e137;
  --beeq-lime-dark: #8bc34a;
  --beeq-dark: #111111;
  --beeq-muted: #555555;
  --beeq-light-bg: #ffffff;
  --beeq-border: #f0f0f0;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #fafafa;
  padding: 60px 20px;
  box-sizing: border-box;
}

.beeq-why-choose-us-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.beeq-section-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* --- Block 1: Introduction Grid Row --- */
.beeq-intro-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.beeq-intro-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.beeq-tagline {
  font-size: 11px;
  font-weight: 700;
  color: var(--beeq-lime-dark);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.beeq-main-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--beeq-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.beeq-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--beeq-muted);
  margin-bottom: 24px;
}

.beeq-cta-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #aadb22;
  background: linear-gradient(135deg, #aadd22 0%, #88cc11 100%);
  color: var(--beeq-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(136, 204, 17, 0.2);
  transition: transform 0.2s ease;
}

.beeq-cta-btn:hover {
  transform: translateY(-2px);
}

/* 3x2 Perks Grid */
.beeq-perks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.beeq-perk-card {
  text-align: center;
  padding: 16px;
}

.beeq-perk-icon {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--beeq-lime-dark);
}

.beeq-perk-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--beeq-dark);
  margin-bottom: 6px;
}

.beeq-perk-card p {
  font-size: 13px;
  color: var(--beeq-muted);
  line-height: 1.4;
}

/* --- Block 2: Process Flow System --- */
.beeq-process-block {
  text-align: center;
  padding-top: 20px;
}

.beeq-process-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--beeq-dark);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

.beeq-process-title span {
  color: var(--beeq-lime-dark);
}

.beeq-process-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.beeq-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.beeq-step-circle-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.beeq-step-circle {
  width: 64px;
  height: 64px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
	background-color: #fbfafb;
}

.beeq-step-number {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8cc63f;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.beeq-step-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--beeq-dark);
  margin-bottom: 6px;
}

.beeq-step-item p {
  font-size: 12px;
  color: var(--beeq-muted);
  line-height: 1.4;
}

.beeq-flow-arrow {
  font-size: 24px;
  color: #cbd5e1;
  transform: rotate(90deg); /* Points downwards on mobile */
  margin: 10px 0;
}

/* --- Block 3: Metrics Dashboard Bar --- */
.beeq-metrics-bar {
  background-color: #111111;
  border-radius: 5px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.beeq-metric-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
}

.beeq-metric-icon {
  font-size: 28px;
  color: var(--beeq-lime);
}

.beeq-metric-item h3 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.beeq-metric-item p {
  font-size: 12px;
  color: #aaaaaa;
  margin-top: 2px;
}

/* --- Media Queries (Tablet / Desktop Breakpoints) --- */

@media (min-width: 640px) {
  .beeq-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .beeq-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 24px;
  }
}

@media (min-width: 992px) {
  .beeq-why-choose-us-section {
    padding: 80px 40px;
  }
  
  /* Split Top Header Block */
  .beeq-intro-row {
    flex-direction: row;
    gap: 60px;
  }
  .beeq-intro-left {
    width: 35%;
  }
  .beeq-perks-grid {
    width: 65%;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 40px;
  }
  .beeq-perk-card {
    text-align: left;
    padding: 0;
  }
  .beeq-perk-icon {
    text-align: left;
    display: block;
  }

  /* Process Steps Horizontal Alignment */
  .beeq-process-flow {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
  .beeq-flow-arrow {
    transform: rotate(0deg); /* Restores pointing right across desktop */
    margin-top: 20px;
  }

  /* Metrics Panel Bar Grid Columns */
  .beeq-metrics-bar {
    grid-template-columns: repeat(4, 1fr);
    padding: 40px;
  }
  .beeq-metric-item {
    border-right: 1px solid #222222;
  }
  .beeq-metric-item:last-child {
    border-right: none;
  }
}


/* Isolated Structural Namespace */
.amz-vs-section {
  --amz-lime: #8bc34a;
  --amz-dark: #111111;
  --amz-card-bg-left: #fafdf6;   /* Soft greenish background */
  --amz-card-bg-right: #fbfaf8;  /* Soft off-white/beige background */
  --amz-border-radius: 5px;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 60px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.amz-vs-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.amz-vs-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Header Text Typography */
.amz-vs-main-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--amz-dark);
  margin-bottom: 40px;
  line-height: 1.3;
}

.amz-vs-main-title span {
  color: var(--amz-lime);
}

/* Comparison Layout Framework */
.amz-vs-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Content Panel Grid Cards */
.amz-vs-card {
  flex: 1;
  border-radius: var(--amz-border-radius);
  padding: 30px 24px;
  text-align: left;
}

.amz-organic-card {
  background-color: var(--amz-card-bg-left);
}

.amz-paid-card {
  background-color: var(--amz-card-bg-right);
}

.amz-vs-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--amz-dark);
  margin-bottom: 20px;
  text-align: center;
}

/* Vector Checkbox Icon Row Lists */
.amz-vs-list {
  list-style: none;
  max-width: 280px;
  margin: 0 auto;
}

.amz-vs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--amz-dark);
  font-weight: 500;
  margin-bottom: 14px;
}

.amz-vs-list li:last-child {
  margin-bottom: 0;
}

.amz-vs-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--amz-lime);
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Center Splitting "VS" Circle Badge Component */
.amz-vs-badge {
  width: 54px;
  height: 54px;
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -10px auto;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.amz-vs-badge span {
  font-size: 16px;
  font-weight: 800;
  color: var(--amz-dark);
  letter-spacing: -0.5px;
}

/* --- Responsive Breakpoint (Tablets and Desktops) --- */
@media (min-width: 768px) {
  .amz-vs-main-title {
    font-size: 34px;
  }
  
  .amz-vs-wrapper {
    flex-direction: row;
    gap: 0; /* Remove gap to make cards meet seamlessly */
  }

  .amz-vs-card {
    padding: 40px 50px;
  }

  .amz-vs-card h3 {
    text-align: left;
    margin-left: 35px;
  }

  .amz-vs-list {
    margin: 0 0 0 35px;
  }

  /* Anchor the VS Circle over the center split */
  .amz-vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 64px;
    height: 64px;
  }

  .amz-vs-badge span {
    font-size: 18px;
  }
}


/* Isolated Structural Namespace Scoping */
.amz-industries-section {
  --amz-lime: #8bc34a;
  --amz-dark: #111111;
  --amz-muted: #555555;
  --amz-card-border: #e2e8f0;
  --amz-banner-bg: #0b0c10;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  padding: 60px 20px;
  box-sizing: border-box;
}

.amz-industries-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.amz-ind-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* --- Section Title Block Header --- */
.amz-ind-header {
  text-align: center;
  margin-bottom: 35px;
}

.amz-ind-tagline {
  font-size: 11px;
  font-weight: 700;
  color: var(--amz-lime);
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}

.amz-ind-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--amz-dark);
  line-height: 1.3;
}

/* --- Industry Category Grid Structure --- */
.amz-ind-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto; /* Handles mobile swipe-scrolling neatly */
  padding: 10px 5px 25px 5px;
  scrollbar-width: thin;
}

/* Category Card Layout UI */
.amz-ind-card {
  min-width: 160px;
  flex: 1;
  background-color: #ffffff;
  border: 1px solid var(--amz-card-border);
  border-radius: 5px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.01);
  transition: transform 0.2s, box-shadow 0.2s;
}

.amz-ind-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.04);
}

.amz-ind-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.amz-ind-card p {
  font-size: 15px;
  font-weight: 600;
  color: var(--amz-dark);
  white-space: nowrap;
}

/* --- Dark Call-To-Action Banner Component --- */
.amz-ind-banner {
  background-color: var(--amz-banner-bg);
  border-radius: 5px;
  padding: 30px 24px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Custom Vector/CSS Graphics styling inside banner */
.amz-banner-graphics {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  position: relative;
  width: 180px;
  height: 90px;
}

.amz-rocket-emoji {
  position: absolute;
  font-size: 28px;
  top: -10px;
  left: 10px;
  transform: rotate(15deg);
}

.amz-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.amz-bar {
  width: 14px;
  background-color: var(--amz-lime);
  border-radius: 3px 3px 0 0;
}

.amz-branding-a {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  font-family: Garamond, Georgia, serif;
  margin-left: 10px;
  line-height: 1;
}

/* Content Text Styling inside Banner */
.amz-banner-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 10px;
}

.amz-banner-content p {
  font-size: 13px;
  color: var(--amz-lime);
  font-weight: 500;
  margin-bottom: 24px;
}

/* Call-to-action Button inside banner */
.amz-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #aadb22;
  background: linear-gradient(135deg, #aadd22 0%, #88cc11 100%);
  color: var(--amz-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 5px;
  transition: transform 0.2s;
  width: 100%;
}

.amz-banner-btn:hover {
  transform: translateY(-2px);
}

/* --- Responsive Layout Breakpoints --- */

/* Tablets / Medium Viewports */
@media (min-width: 640px) {
  .amz-ind-grid {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
  .amz-ind-card {
    flex: none;
    width: calc(33.33% - 12px);
  }
  .amz-banner-btn {
    width: auto;
  }
}

/* Full Desktop Screens */
@media (min-width: 1024px) {
  .amz-industries-section {
    padding: 80px 40px;
  }
  .amz-ind-title {
    font-size: 34px;
  }
  .amz-ind-grid {
    flex-wrap: nowrap;
    gap: 14px;
  }
  .amz-ind-card {
    width: auto;
    flex: 1;
  }
  
  /* Horizontal Split alignment for banner components */
  .amz-ind-banner {
    flex-direction: row;
    text-align: left;
    
    gap: 90px;
  }
  .amz-banner-content h3 {
    font-size: 26px;
  }
  .amz-banner-content p {
    font-size: 15px;
  }
}

/* Scoped Wrapper to avoid any global style bleed */
.amz-spn-banner-wrapper {
  box-sizing: border-box;
  width: 100%;
  padding: 10px; 
	padding-bottom: 50px;
  
}

.amz-spn-banner-wrapper *, 
.amz-spn-banner-wrapper *::before, 
.amz-spn-banner-wrapper *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* Main Container Grid */
.amz-spn-banner-wrapper .spn-banner-container {
  max-width: 1240px;
  margin: 0 auto;
  background-color: #111111; /* Sleek dark background matching image */
  border-radius: 6px;
  padding: 25px 40px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  overflow: hidden;
}

/* --- Left Zone: Logo --- */
.amz-spn-banner-wrapper .spn-logo-circle {
  background-color: #ff9900;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.2);
}

.amz-spn-banner-wrapper .spn-brand-text {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.amz-spn-banner-wrapper .spn-brand-text span {
  color: #111111;
  font-weight: 400;
}

.amz-spn-banner-wrapper .spn-sub-text {
  color: #ffffff;
  font-size: 11px;
  text-transform: lowercase;
  line-height: 1.2;
  margin-top: 4px;
  opacity: 0.9;
  font-weight: 500;
}

/* --- Center Zone: Typography & Button --- */
.amz-spn-banner-wrapper .spn-banner-content-zone {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amz-spn-banner-wrapper .spn-banner-headline {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.amz-spn-banner-wrapper .spn-banner-subline {
  color: #99cc33; /* Vivid lime/green from image */
  font-size: 15px;
  font-weight: 500;
  margin: 15px 0 18px 0;
}

.amz-spn-banner-wrapper .spn-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: max-content;
  background-color: #82b424;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.amz-spn-banner-wrapper .spn-banner-btn:hover {
  background-color: #99cc33;
}

.amz-spn-banner-wrapper .spn-banner-btn:active {
  transform: scale(0.98);
}

.amz-spn-banner-wrapper .spn-arrow {
  margin-left: 8px;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.amz-spn-banner-wrapper .spn-banner-btn:hover .spn-arrow {
  transform: translateX(4px);
}

/* --- Right Zone: Vector Graphics --- */
.amz-spn-banner-wrapper .spn-banner-graphics-zone {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  height: 100%;
}

.amz-spn-banner-wrapper .spn-graphics-mock {
  width: 170px;
  height: auto;
}

.amz-spn-banner-wrapper .spn-amazon-smile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5px;
}

.amz-spn-banner-wrapper .amz-letter {
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  font-family: Georgia, serif;
  line-height: 0.8;
}

.amz-spn-banner-wrapper .amz-smile {
  width: 32px;
  margin-top: -2px;
}

/* --- Responsive Media Queries --- */

/* Tablet view */
@media (max-width: 992px) {
  .amz-spn-banner-wrapper .spn-banner-container {
    grid-template-columns: 140px 1fr;
    padding: 20px 25px;
    gap: 20px;
  }
  .amz-spn-banner-wrapper .spn-banner-graphics-zone {
    display: none; /* Hide complex graphics on medium screens to keep it clean */
  }
  .amz-spn-banner-wrapper .spn-logo-circle {
    width: 130px;
    height: 130px;
  }
  .amz-spn-banner-wrapper .spn-brand-text { font-size: 18px; }
  .amz-spn-banner-wrapper .spn-banner-headline { font-size: 20px; }
}

/* Mobile View */
@media (max-width: 600px) {
  .amz-spn-banner-wrapper .spn-banner-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 25px 15px;
  }
  .amz-spn-banner-wrapper .spn-banner-content-zone {
    align-items: center;
  }
  .amz-spn-banner-wrapper .spn-logo-circle {
    margin: 0 auto;
  }
  .amz-spn-banner-wrapper .spn-banner-headline {
    font-size: 18px;
  }
  .amz-spn-banner-wrapper .spn-banner-btn {
    width: 100%;
    justify-content: center;
    font-size: 13px;
  }
}


/* Scoped Wrapper to isolate styles from your existing CSS */
.amz-management-section {
  --primary-black: #111111;
  --amazon-green: #9acd32; /* Adjust hex code to perfectly match your brand lime/green */
  --text-gray: #555555;
  --bg-white: #ffffff; 
  background-color: #f5f6f6;
  padding: 60px 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.amz-management-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Layout Container */
.amz-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* Left Content Column */
.amz-content-col {
  width: 100%;
}

.amz-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-black);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.amz-highlight {
  color: var(--amazon-green);
}

.amz-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 480px;
  margin-bottom: 40px;
}

/* Features Layout */
.amz-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.amz-feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.amz-icon-wrapper {
  color: var(--primary-black);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Green highlight on the checkmark inside the shield icon */
.amz-feature-item:nth-child(1) .amz-icon-wrapper svg path:last-child {
  stroke: var(--amazon-green);
}

.amz-icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.amz-feature-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-black);
}

/* Right Graphic Column */
.amz-graphic-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.amz-mockup-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
}

/* --- Media Queries for Responsiveness --- */

/* Tablet Screens (Horizontal layout begins) */
@media (min-width: 768px) {
  .amz-container {
    flex-direction: row;
    gap: 30px;
  }
  
  .amz-content-col,
  .amz-graphic-col {
    width: 50%;
  }

  .amz-title {
    font-size: 32px;
  }
}

/* Desktop Screens */
@media (min-width: 1024px) {
  .amz-management-section {
    padding: 100px 40px;
  }

  .amz-container {
    gap: 60px;
  }

  .amz-title {
    font-size: 32px;
  }

  .amz-features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
/* Isolated section container */
.amz-features-bar-section {
  --text-dark: #111111;
  --accent-lime: #a3d600; /* Subtle green/lime gradient match */
  --divider-color: #dddddd;
  --bg-color: #f5f6f6;
  
  background-color: var(--bg-color);
  
  width: 100%;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Local reset to protect layout structure */
.amz-features-bar-section *,
.amz-features-bar-section *::before,
.amz-features-bar-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Responsive Grid System */
.amz-features-container {
  display: grid;
  grid-template-columns: 1fr; /* Mobile default */
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
	gap:10px;
}

/* Individual feature columns */
.amz-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	border: 1px solid #D8D5D5;
	border-radius: 5px;
}

/* SVG Icon layout & color stylings */
.amz-feature-icon {
  width: 44px;
  height: 44px;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amz-feature-icon svg {
  width: 100%;
  height: 100%;
}

/* Lime green accent fills and strokes matching image styling */
.amz-feature-icon .amz-accent-stroke {
  stroke: var(--accent-lime);
}
.amz-feature-icon .amz-accent-fill {
  fill: var(--accent-lime);
  stroke: var(--accent-lime);
}

/* Text styles */
.amz-feature-title {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

/* --- Media Queries for Layout Continuity --- */

/* Mobile Divider Separators (stacked vertically) */
@media (max-width: 599px) {
  .amz-feature-card:not(:last-child) {
   
  }
}

/* Tablet Layout (2 columns x 2 rows) */
@media (min-width: 600px) and (max-width: 899px) {
  .amz-features-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Vertical divider for the left columns */
  .amz-feature-card:nth-child(1),
  .amz-feature-card:nth-child(3) {
    border-right: 1px solid var(--divider-color);
  }
  
  /* Horizontal divider separating row 1 from row 2 */
  .amz-feature-card:nth-child(1),
  .amz-feature-card:nth-child(2) {
    border-bottom: 1px solid var(--divider-color);
  }
}

/* Desktop Layout (4 columns in a single row - exact match) */
@media (min-width: 900px) {
  .amz-features-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Apply thin vertical dividers between blocks */
  .amz-feature-card:not(:last-child) {
   
    
  }
}

/*====================================================
Beeq Media Labs
Amazon Seller Central Services
=====================================================*/

.bm-amz-services-section{
    padding:90px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

.bm-amz-services-section *{
    box-sizing:border-box;
}

.bm-amz-container{
    width:min(1240px,92%);
    margin:auto;
}

/*==============================
Heading
==============================*/

.bm-amz-header{
    text-align:center;
    margin-bottom:60px;
}

.bm-amz-subtitle{
    display:inline-block;
    padding:8px 18px;
    border-radius:5px;
    background:#edf8c5;
    color:#8ab800;
    font-weight:700;
    font-size:13px;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.bm-amz-header h2{
    margin:18px 0 15px;
    font-size:clamp(34px,4vw,52px);
    line-height:1.15;
    color:#101828;
    font-weight:800;
}

.bm-amz-header p{
    max-width:760px;
    margin:auto;
    color:#667085;
    font-size:18px;
    line-height:1.8;
}

/*==============================
Grid
==============================*/

.bm-amz-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/*==============================
Card
==============================*/

.bm-amz-card{

    position:relative;

    background:#fff;

    border:1px solid #edf0f5;

    border-radius:5px;

    padding:20px;

    transition:.35s;

    box-shadow: 0 12px 35px rgba(16,24,40,.05);

    overflow:hidden;

    display:flex;

    flex-direction:column;

}

.bm-amz-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 55px rgba(16,24,40,.12);

    border-color:#bdde35;

}

/*==============================
Number
==============================*/

.bm-amz-number{

    position:absolute;

    top:20px;

    left:28px;

    font-size:52px;

    font-weight:800;

    color:#bdde35;

    opacity:.22;

    line-height:1;

}

/*==============================
Top Area
==============================*/

.bm-amz-card-top{

    display:flex;

    align-items:flex-start;

    gap:25px;

    margin-bottom:28px;

}

.bm-amz-icon{

    width:95px;

    min-width:95px;

    height:95px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    0 10px 35px rgba(0,0,0,.08);

}

.bm-amz-icon img{

    width:46px;

    height:46px;

    object-fit:contain;

}

.bm-amz-card h3{

    margin:0 0 12px;

    font-size:30px;

    line-height:1.2;

    font-weight:700;

    color:#101828;

}

.bm-amz-card p{

    margin:0;

    color:#667085;

    font-size:17px;

    line-height:1.7;

}

/*==============================
List
==============================*/

.bm-amz-list{

    list-style:none;

    margin:8px 0 0;

    padding:0;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:12px 28px;

}

.bm-amz-list li{

    position:relative;

    padding-left:28px;

    color:#344054;

    line-height:1.65;

    font-size:14px;

}

.bm-amz-list li:before{

     content: "\2713";

    position:absolute;

    left:0;

    top:1px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#bdde35;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:11px;

    font-weight:700;

}

/*==============================
Responsive
==============================*/

@media(max-width:1200px){

.bm-amz-card{

padding:20px;

}

.bm-amz-card h3{

font-size:26px;

}

.bm-amz-icon{

width:85px;

height:85px;

min-width:85px;

}

}

@media(max-width:992px){

.bm-amz-grid{

grid-template-columns:1fr;

}

.bm-amz-card{

padding:20px;

}

}

@media(max-width:768px){

.bm-amz-services-section{

padding:70px 0;

}

.bm-amz-card-top{

flex-direction:column;

align-items:flex-start;

}

.bm-amz-icon{

margin-bottom:8px;

}

.bm-amz-list{

grid-template-columns:1fr;

}

.bm-amz-card h3{

font-size:24px;

}

.bm-amz-header h2{

font-size:34px;

}

.bm-amz-header p{

font-size:16px;

}

}

@media(max-width:576px){

.bm-amz-container{

width:94%;

}

.bm-amz-card{

padding:24px;

border-radius:5px;

}

.bm-amz-number{

font-size:42px;

top:18px;

left:22px;

}

.bm-amz-icon{

width:74px;

height:74px;

min-width:74px;

}

.bm-amz-icon img{

width:38px;

height:38px;

}

.bm-amz-card h3{

font-size:22px;

}

.bm-amz-list li{

font-size:14px;

}

}
.bm-amz-icon i{
    font-size:42px;
    color:#bdde35;
}


:root {
  --primary: #bdde35;
  --dark: #101828;
  --body: #667085;
  --border: #EAECF0;
  --bg-white: #ffffff;
  --hover-bg: #f7f8fa;
}


/* Base Section Styling */
.faq-section {
  max-width: 1240px;
  margin: 0 auto;
	padding-top: 50px;
  
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

/* Background Decoration */
.faq-section::before {
  content: '';
  position: absolute;
  left: -100px;
  top: 10%;
  width: 300px;
  height: 300px;
  background: var(--primary);
  filter: blur(150px);
  opacity: 0.1;
  z-index: 0;
}

/* Header & Typography */
.faq-header {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.faq-subtitle {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.faq-title {
  color: var(--dark);
  font-size: 42px;
  margin: 15px 0 30px;
}

.highlight {
  color: var(--primary);
}

/* Search Box */
.search-wrapper {
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
}

.faq-search {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 35%;
  transform: translateY(-50%);
  color: #999;
}

/* Tabs */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--bg-white);
  color: var(--dark);
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.tab:hover { background: var(--hover-bg); }
.tab.active { background: var(--primary); border-color: var(--primary); }

/* Main Container (Desktop Side-by-Side) */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  background: var(--bg-white);
  border-radius: 5px;
  border: 1px solid var(--border);
  box-shadow: 0 15px 45px rgba(0,0,0,.05);
  padding: 40px;
  position: relative;
  z-index: 1;
}

/* Left Menu */
.faq-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-menu-item {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 5px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.faq-menu-item:hover {
  background: var(--hover-bg);
  transform: translateY(-2px);
}

.faq-menu-item.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(189, 222, 53, 0.3);
}

.faq-menu-item .num {
  font-weight: 700;
  background: #f1f1f1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  color: var(--dark);
}

.faq-menu-item.active .num { background: var(--dark); color: white; }
.faq-menu-item p { margin: 0; font-weight: 600; flex: 1; color: var(--dark); font-size: 15px; }
.faq-menu-item .arrow { transition: 0.3s; }
.faq-menu-item.active .arrow { transform: rotate(90deg); } /* Points down when active */

/* Right Answer Content */
.faq-content {
  padding: 20px;
}

.faq-answer {
  display: none;
  animation: fadeSlide 300ms ease forwards;
}

.faq-answer.active {
  display: block;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.answer-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.answer-header h3 {
  font-size: 32px; /* Matches 48px spec requirement scaled for desktop */
  color: var(--dark);
  margin: 0;
}

.highlight-bg {
  background: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  color: var(--dark);
  margin-right: 20px;
}

.faq-answer p {
  font-size: 18px;
  line-height: 34px;
  margin-bottom: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
  padding: 20px;
  background: #fbfcf8;
  border-radius: 12px;
}

.benefits-grid span { font-weight: 500; color: var(--dark); }

/* CTA Bottom Box */
.faq-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-white);
  padding: 30px 40px;
  border-radius: 5px; /* Pill shape */
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,.03);
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.cta-left { display: flex; align-items: center; gap: 20px; }
.cta-left h4 { margin: 0 0 5px 0; color: var(--dark); font-size: 20px; }
.cta-left p { margin: 0; font-size: 14px; }
.icon-circle {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.btn-primary {
  background: var(--dark);
  color: white;
  padding: 16px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-primary:hover { background: #000; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* Mobile Layout Override */
@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr; /* Stack into an accordion style visually */
    padding: 20px;
  }
  .faq-title { font-size: 32px; }
  .faq-cta {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    gap: 20px;
  }
  .cta-left { flex-direction: column; }
}


/* Isolated Namespace Wrapper */
.re-marketing-section {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333333;
  padding: 60px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.re-marketing-section *, 
.re-marketing-section *::before, 
.re-marketing-section *::after {
  box-sizing: inherit;
}

.re-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Helpers */
.re-text-green {
  color: #76bc21;
}

/* Header Styles */
.re-header {
  text-align: center;
  margin-bottom: 50px;
}

.re-subheading {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #555555;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.re-subheading::before,
.re-subheading::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 25px;
  height: 1px;
  background-color: #76bc21;
}

.re-subheading::before { left: -35px; }
.re-subheading::after { right: -35px; }

.re-main-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0b1c2c;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.re-lead-text {
  font-size: 16px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Layout Grid */
.re-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Card Common Styles */
.re-card {
  border-radius: 5px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.re-card-google {
  background-color: #f7fcf0;
  border: 1px solid #e1f2cc;
}

.re-card-meta {
  background-color: #f3f7fc;
  border: 1px solid #dbe7f5;
}

.re-card-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.re-logo-wrapper {
  flex-shrink: 0;
}

.re-icon-logo {
  width: 32px;
  height: 32px;
}

.re-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0b1c2c;
  margin: 0;
  line-height: 1.3;
}

.re-card-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin: 0 0 25px 0;
}

/* Features List */
.re-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.re-features-list li {
  font-size: 14px;
  color: #444444;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Custom Checkmark Icons */
.re-features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2376bc21'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.5 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Footer Box in Cards */
.re-card-footer {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.re-card-google .re-card-footer {
  border: 1px solid #e1f2cc;
}

.re-card-meta .re-card-footer {
  border: 1px solid #dbe7f5;
}

.re-footer-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.re-card-google .re-footer-icon-wrapper {
  background-color: #76bc21;
}

.re-card-meta .re-footer-icon-wrapper {
  background-color: #3b5998;
}

.re-footer-icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.re-card-footer p {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .re-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .re-marketing-section {
    padding: 40px 15px;
  }
  .re-main-heading {
    font-size: 24px;

  }
  .re-card {
    padding: 20px;
  }
  .re-card-title {
    font-size: 18px;
  }
}
/* Isolated Namespace Container */
.bq-stats-section {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  padding: 40px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.bq-stats-section *,
.bq-stats-section *::before,
.bq-stats-section *::after {
  box-sizing: inherit;
}

.bq-stats-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Outer Wrapper Border */
.bq-stats-border-box {
  border: 1px solid #eaeaea;
  border-radius: 5px;
  padding: 30px 25px;
  position: relative;
  margin-top: 20px;
}

/* Title Positioned In the Middle of Top Border Line */
.bq-stats-title {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 0 20px;
  white-space: nowrap;
}

/* Responsive Grid/Flex Strategy */
.bq-stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 15px;
  margin-top: 10px;
}

/* Individual Stat Cards */
.bq-stat-card {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bq-stat-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* Icons */
.bq-icon-wrapper {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bq-icon-wrapper svg {
  width: 100%;
  height: 100%;
   /* Matches the vibrant green in image */
}

/* Numbers styling */
.bq-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
  line-height: 1.2;
}

/* Labels styling */
.bq-stat-label {
  font-size: 12px;
  color: #555555;
  font-weight: 500;
  line-height: 1.4;
}

/* --- Media Queries for Responsiveness --- */

/* Desktop & Tablets (Wrap gracefully if screen gets tight) */
@media (max-width: 992px) {
  .bq-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .bq-stats-title {
    font-size: 13px;
  }
}

/* Small Tablets / Large Phones (Switch to 2 columns) */
@media (max-width: 768px) {
  .bq-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bq-stats-title {
    width: 90%;
    white-space: normal;
    font-size: 12px;
    line-height: 1.4;
  }
  .bq-stats-border-box {
    padding-top: 40px; /* Gives space for the wrapped title */
  }
}

/* Mobile Phones (Stack 1 column) */
@media (max-width: 480px) {
  .bq-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bq-stat-card {
    padding: 15px;
  }
}



/* RESET & FOUNDATION */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}



:root {
    --lime-brand: #9adc28;
    --dark-bg: #141619;
    --text-muted: #888;
    --border-color: #e2e8f0;
}

/* TOP BANNER DARK GRID */
.faq-hero {
    background-color: var(--dark-bg);
    background-image: radial-gradient(circle at 90% 10%, #202429 0%, transparent 40%);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.faq-hero .badge {
    border: 1px solid var(--lime-brand);
    color: var(--lime-brand);
    padding: 4px 14px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.faq-hero .hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
	color: #ffffff;
	text-transform: uppercase;
	
}

.faq-hero .hero-title span {
    color: var(--lime-brand);
}

.faq-hero .hero-subtitle {
    color: #b5b5b5;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    padding: 20px 15px;
    text-align: center;
    transition: transform 0.3s ease, border 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(154, 220, 40, 0.3);
}

.stat-card i {
    color: var(--lime-brand);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.stat-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* MAIN CONTENT LAYOUT */
.faq-container {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding: 20px 20px;
}

/* SIDEBAR LAYOUT */
.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-box {
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.info-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.info-text h2 span {
    color: var(--lime-brand);
}

.info-text .divider {
    width: 40px;
    height: 4px;
    background-color: var(--lime-brand);
    margin: 15px 0;
    border-radius: 2px;
}

.info-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* SIDEBAR CATEGORY MENU */
.category-menu {
    background: #fff;
    border-radius: 5px;
    padding: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 16px;
    border-radius: 5px;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.menu-btn i:first-child {
    font-size: 1.1rem;
    width: 20px;
    color: #777;
}

.menu-btn .arrow-end {
    margin-left: auto;
    font-size: 0.75rem;
    color: #bbb;
}

.menu-btn:hover {
    background-color: #f1f5f9;
}

.menu-btn.active {
    background-color: #1c1e21;
    color: #fff;
}

.menu-btn.active i:first-child {
    color: var(--lime-brand);
}

/* SIDEBAR CONTACT CARD */
.contact-box {
    background-color: #fff;
    text-align: center;
    border: 1px solid var(--border-color);
}

.contact-icon {
    font-size: 2.2rem;
    color: var(--lime-brand);
    margin-bottom: 15px;
}

.contact-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--lime-brand);
    color: #111;
    text-decoration: none;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-contact:hover {
    background-color: #89c522;
}

/* FAQ ACCORDION WRAPPER */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    user-select: none;
}

.q-number {
    background: #f1f5f9;
    color: #666;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.accordion-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    flex-grow: 1;
    line-height: 1.4;
}

.icon-toggle {
    font-size: 0.9rem;
    color: #888;
    transition: transform 0.3s ease;
}

/* Expand View Specific Style rules */
.accordion-item.active {
    border-color: var(--lime-brand);
    box-shadow: 0 4px 20px rgba(154, 220, 40, 0.06);
}

.accordion-item.active .q-number {
    background-color: var(--lime-brand);
    color: #111;
}

/* Smooth Accordion Logic Area */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: #4a5568;
    font-size: 0.92rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 1000px; /* Arbitrary large content fallback height */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
    padding-bottom: 24px;
}

.accordion-content p {
    margin-bottom: 12px;
}

.accordion-content a {
    color: #111;
    text-decoration: underline;
    font-weight: 500;
}

.accordion-content ul {
    margin: 10px 0 15px 20px;
}

.accordion-content li {
    margin-bottom: 6px;
}

/* Two-Column Lists layout */
.two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    list-style-type: square;
    margin-left: 20px !important;
}

/* Key Benefit Design Block Component */
.key-benefit {
    background-color: #fafdf5;
    border: 1px solid #eaf6d6;
    padding: 14px 18px;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.key-benefit i {
    color: #7bb51c;
    font-size: 1.2rem;
    margin-top: 2px;
}

.key-benefit p {
    margin: 0;
    font-size: 0.88rem;
    color: #4b5a32;
}

/* RESPONSIVE LAYOUT MATRIX */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faq-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .category-menu {
        grid-column: span 2;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .faq-hero .hero-title { font-size: 1.8rem; }
    .faq-sidebar { grid-template-columns: 1fr; }
    .category-menu { grid-column: span 1; grid-template-columns: 1fr; }
    .two-col-list { grid-template-columns: 1fr; }
}