/* --- 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;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/*.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: 12px;
    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: 12px;
    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:50px;
    font-size:13px;
    letter-spacing:4px;
    color:#a7cf32;
    font-weight:600;
}

.bqml-title{
    text-align:center;
    font-size:64px;
    margin:20px 0 10px;
    line-height:1.1;
    color:#1a1a1a;
    font-weight:800;
}

.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:25px;
    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:18px;
    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: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.mkt-badge-top svg {
  width: 14px;
  height: 14px;
}

.mkt-main-heading {
  font-size: 46px;
  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: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a202c;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .bq-heading {
    font-size: 42px;
  }
}

.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: 12px;
  padding: 25px;
  text-align: center;
}

@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;
}