.bb-hero {
    background-color: var(--lp-cream);
    padding: 90px 0 30px;
}
.bb-hero-title {
    font-family: var(--lp-font-heading);
    color: var(--lp-navy);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}
.bb-hero-tagline {
    color: var(--lp-text-muted);
    font-size: 15px;
    opacity: 0.7;
    margin-top: 20px;
}

.bb-marquee {
    background-color: #0f3d3e;
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}
.bb-marquee-track {
    display: inline-flex;
    gap: 40px;
    animation: bb-scroll 22s linear infinite;
}
.bb-marquee-track span {
    color: var(--lp-cream);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
@keyframes bb-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.bb-intro {
    background-color: var(--lp-navy);
    padding: 70px 0;
}
.bb-intro-text {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.9;
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}
.bb-section-title {
    font-family: var(--lp-font-heading);
    color: var(--lp-white);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.bb-feature-row {
    background-color: var(--lp-navy);
    padding: 60px 0;
}
.bb-feature-row-last {
    padding-bottom: 90px;
}
.bb-section-title-light {
    font-family: var(--lp-font-heading);
    color: var(--lp-white);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bb-feature-desc {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.bb-feature-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.bb-feature-list li {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.9;
}
.bb-feature-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

@media (max-width: 767px) {
    .bb-hero-title { font-size: 28px; }
    .bb-feature-row .row > div { margin-bottom: 24px; }
}