:root {
    --ink: #1f1f1f;
    --muted: #5f6b7a;
    --border: rgba(0, 0, 0, .12);
    --rainbow: linear-gradient(90deg, #ff9acb, #ffd764, #8df0c6, #7cc9ff);
    --teal: #1f7a6b;
    --cta-primary: #1f7a6b;
    --cta-primary-hover: #17665a;
    --shadow: 0 18px 46px rgba(0, 0, 0, .12);
    --header-height: 85px;

    /* Rainbow Soft Palette */
    --p-pink: #ffd6e8;
    --p-peach: #ffe6c7;
    --p-mint: #dff5ec;
    --p-blue: #e6f1ff;
    --rainbow-soft: linear-gradient(135deg, var(--p-pink), var(--p-peach), var(--p-mint), var(--p-blue));
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', system-ui, sans-serif;
    color: var(--ink);
}

/* Header base */
.bbp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* Scroll Accent */
.bbp-scroll-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--rainbow);
    opacity: 0;
    transition: opacity .3s ease;
}

.bbp-scroll-accent.active {
    opacity: 1;
}

/* Layout */
.bbp-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: var(--header-height);
    box-sizing: border-box;
}

/* Logo */
.bbp-logo img {
    max-height: 56px;
    display: block;
}

/* Nav */
.bbp-nav ul {
    display: flex;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bbp-nav a {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.bbp-nav a:hover {
    background: var(--rainbow);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* CTA group */
.bbp-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Phone */
.bbp-phone {
    font-weight: 700;
    color: var(--teal);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    font-size: 15px;
}

/* License */
.bbp-license {
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid rgba(31, 122, 107, .25);
    border-radius: 999px;
    background: #f3fbf9;
    transition: background 0.2s ease;
}

.bbp-license:hover {
    background: #e6f7f3;
}

/* Enroll */
.bbp-enroll {
    background: var(--rainbow);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bbp-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
}

/* Scallops */
.bbp-scallops {
    height: 26px;
    background: #fff;
    -webkit-mask: radial-gradient(13px at 13px 0, #000 99%, transparent 100%) repeat-x left top / 26px 26px;
    mask: radial-gradient(13px at 13px 0, #000 99%, transparent 100%) repeat-x left top / 26px 26px;
}

/* Mobile */
.bbp-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bbp-hamburger span {
    width: 26px;
    height: 3px;
    background: #444;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.bbp-mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.bbp-mobile-menu a,
.bbp-mobile-phone {
    padding: 14px 22px;
    font-weight: 700;
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
    color: #444;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
}

.bbp-mobile-phone {
    color: var(--teal);
    cursor: pointer;
}

.bbp-mobile-license {
    font-size: 14px;
    background: #f3fbf9 !important;
    color: var(--teal) !important;
}

.bbp-mobile-enroll {
    background: var(--rainbow) !important;
    color: #fff !important;
}

/* Responsive */
@media(max-width: 900px) {
    .bbp-nav {
        display: none;
    }

    .bbp-hamburger {
        display: flex;
    }

    .bbp-cta .bbp-phone,
    .bbp-cta .bbp-enroll {
        display: none;
    }

    .bbp-logo img {
        max-height: 48px;
    }
}

@media(max-width: 700px) {
    .bbp-license {
        display: none;
    }
}

/* =========================================
   HOMEPAGE COMPONENTS
   ========================================= */

/* Hero */
.bb-hero-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    font-family: 'Poppins', system-ui, sans-serif;
    overflow: hidden;
    box-sizing: border-box;
}

.bb-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bb-hero-fw::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .90), rgba(255, 255, 255, .96));
    z-index: 2;
}

.bb-hero-wrap {
    position: relative;
    z-index: 3;
    max-width: 1120px;
    margin: 0 auto;
    padding: 110px 22px 100px;
}

@media(max-width: 768px) {
    .bb-hero-wrap {
        padding: 80px 22px 60px;
        text-align: center;
    }

    .bb-hero-wrap h1 {
        font-size: 36px !important;
    }

    .bb-hero-btns {
        justify-content: center;
    }
}

.bb-hero-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #333;
    margin-bottom: 20px;
}

.bb-hero-wrap h1 {
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: 0 0 18px;
    color: var(--ink);
    max-width: 860px;
}

.bb-hero-desc {
    font-size: 18px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 760px;
}

.bb-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.bb-hero-trust {
    margin-top: 26px;
    font-size: 15px;
    color: #47525e;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.bb-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

/* Trust Section */
.bb-trust-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: radial-gradient(900px 420px at 12% 20%, rgba(223, 245, 236, .45), transparent 60%), radial-gradient(900px 420px at 88% 30%, rgba(255, 214, 232, .45), transparent 60%), linear-gradient(to bottom, #ffffff, #f7f9ff);
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-trust-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 90px 22px 100px;
}

.bb-trust-image {
    text-align: center;
    margin-bottom: 36px;
}

.bb-trust-image img {
    width: 100%;
    max-width: 820px;
    height: 500px;
    /* Refined vertical space */
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.bb-trust-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #333;
}

.bb-trust-wrap h2 {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 20px 0 14px;
    color: var(--ink);
}

.bb-trust-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 760px;
}

.bb-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media(min-width:900px) {
    .bb-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bb-trust-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.bb-trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #f5f8ff;
    border: 1px solid var(--border);
    margin-bottom: 14px;
}

.bb-trust-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
}

.bb-trust-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

.bb-trust-cta {
    margin-top: 48px;
    border-radius: 34px;
    padding: 40px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.bb-trust-cta h4 {
    font-size: 22px;
    margin: 0 0 10px;
}

.bb-trust-cta p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 720px;
}

.bb-trust-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.bb-trust-links {
    margin-top: 18px;
    font-size: 14px;
    color: #6b7785;
}

.bb-trust-links a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
}

.bb-trust-links a:hover {
    text-decoration: underline;
}

/* Programs Age */
.bb-program-age-fw {
    width: 100%;
    background: #f9fbff;
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-program-age-wrap {
    max-width: 1120px;
    margin: auto;
    padding: 100px 22px;
}

.bb-program-age-image {
    max-width: 860px;
    margin: 0 auto 46px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 52px rgba(0, 0, 0, .12);
}

.bb-program-age-image img {
    width: 100%;
    height: 550px;
    /* Balanced height for preschool activity */
    object-fit: cover;
    display: block;
}

.bb-program-age-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #2a3a46;
    margin-bottom: 18px;
}

.bb-program-age-wrap h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1f2933;
}

.bb-program-age-desc {
    font-size: 18px;
    line-height: 1.85;
    color: #5f6b7a;
    max-width: 780px;
}

.bb-program-age-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 46px;
}

@media(min-width:900px) {
    .bb-program-age-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bb-age-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .1);
}

.bb-age-pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    background: #e6f1ff;
    color: #1f3a52;
    margin-bottom: 14px;
}

.bb-age-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #1f2933;
}

.bb-age-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5f6b7a;
    margin-bottom: 14px;
}

.bb-age-meta {
    font-size: 13px;
    line-height: 1.6;
    color: #3f4c5a;
}

.bb-age-meta strong {
    color: #1f2933;
}

/* Safety Section */
.bb-safety-fw {
    width: 100%;
    background: radial-gradient(900px 420px at 12% 20%, rgba(255, 230, 199, .45), transparent 60%), radial-gradient(900px 420px at 88% 30%, rgba(230, 241, 255, .45), transparent 60%), linear-gradient(to bottom, #fff8f1, #ffffff);
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-safety-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 90px 22px 100px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
}

@media(min-width:900px) {
    .bb-safety-wrap {
        grid-template-columns: 1.05fr .95fr;
        align-items: start;
    }
}

.bb-safety-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #333;
    margin-bottom: 18px;
}

.bb-safety-wrap h2 {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin: 0 0 16px;
    color: #1f1f1f;
}

.bb-safety-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #5f6b7a;
    max-width: 640px;
}

.bb-safety-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.bb-safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media(min-width:600px) {
    .bb-safety-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bb-safety-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .12);
}

.bb-safety-card h3 {
    font-size: 17px;
    margin: 0 0 8px;
    color: #1f1f1f;
}

.bb-safety-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5f6b7a;
    margin: 0;
}

/* Testimonials */
.bb-test-fw {
    width: 100%;
    background: radial-gradient(900px 420px at 15% 25%, rgba(223, 245, 236, .45), transparent 60%), radial-gradient(900px 420px at 85% 30%, rgba(255, 214, 232, .45), transparent 60%), linear-gradient(to bottom, #ffffff, #f7f9ff);
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-test-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 90px 22px 100px;
}

.bb-test-image {
    max-width: 760px;
    margin: 0 auto 48px;
}

.bb-test-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .10);
}

.bb-test-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #e7f7f1, #ffe7f2, #eef3ff);
    color: #444;
    margin-bottom: 18px;
}

.bb-test-wrap h2 {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin: 0 0 14px;
    color: #1f2933;
}

.bb-test-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #5b6770;
    max-width: 760px;
    margin-bottom: 48px;
}

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

@media(min-width:900px) {
    .bb-test-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bb-test-card {
    background: #fff;
    border: 1px solid #e6ebf1;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bb-test-quote {
    font-size: 16px;
    line-height: 1.75;
    color: #2a2f36;
    margin-bottom: 22px;
}

.bb-test-meta {
    border-top: 1px solid #e6ebf1;
    padding-top: 14px;
    font-size: 14px;
    color: #6b7680;
}

.bb-test-meta strong {
    color: #1f2933;
    font-weight: 700;
}

.bb-test-cta {
    margin-top: 56px;
    padding: 36px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e6ebf1;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
}

.bb-test-cta h3 {
    font-size: 22px;
    margin: 0 0 10px;
    color: #1f2933;
}

.bb-test-cta p {
    font-size: 16px;
    color: #5b6770;
    line-height: 1.7;
    max-width: 720px;
}

.bb-test-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

/* Team Section */
.bb-team-fw {
    width: 100%;
    background: radial-gradient(900px 420px at 15% 20%, rgba(230, 241, 255, .45), transparent 60%), radial-gradient(900px 420px at 85% 30%, rgba(223, 245, 236, .45), transparent 60%), linear-gradient(to bottom, #f7f9ff, #ffffff);
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-team-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 90px 22px 100px;
}

.bb-team-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--rainbow-soft);
    color: #444;
}

.bb-team-wrap h2 {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 20px 0 14px;
    color: var(--ink);
}

.bb-team-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 760px;
}

.bb-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 42px;
}

@media(min-width:900px) {
    .bb-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bb-team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bb-team-head {
    display: flex;
    gap: 14px;
    align-items: center;
}

.bb-team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    /* Standardized for portrait focus */
    border: 2px solid var(--border);
    background: #f5f7fb;
    max-height: 80px;
    /* Refinement */
}

.bb-team-name {
    font-size: 18px;
    margin: 0;
}

.bb-team-role {
    font-size: 14px;
    color: var(--muted);
    margin: 2px 0 0;
}

.bb-team-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

.bb-team-cta {
    margin-top: 48px;
    border-radius: 34px;
    padding: 36px;
    background: radial-gradient(800px 360px at 15% 25%, rgba(223, 245, 236, .55), transparent 60%), radial-gradient(800px 360px at 85% 35%, rgba(255, 230, 199, .55), transparent 60%), #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.bb-team-cta h3 {
    font-size: 22px;
    margin: 0 0 10px;
}

.bb-team-cta p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 720px;
}

.bb-team-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

/* Enroll CTA */
.bb-enroll-cta-fw {
    width: 100%;
    background: linear-gradient(rgba(255, 255, 255, .88), rgba(255, 255, 255, .94)), url('../images/classroom-2.webp') center / cover no-repeat;
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-enroll-cta-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 110px 22px 120px;
    text-align: center;
}

.bb-enroll-cta-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffd6e8, #ffe6c7, #dff5ec, #e6f1ff);
    color: #444;
    margin-bottom: 22px;
}

.bb-enroll-cta-wrap h2 {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 0 0 18px;
    color: #1f1f1f;
}

.bb-enroll-cta-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #5f6b7a;
    max-width: 780px;
    margin: 0 auto 34px;
}

.bb-enroll-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bb-enroll-btn {
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .2s ease;
    cursor: pointer;
}

.bb-enroll-btn-primary {
    background: var(--cta-primary);
    color: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
}

.bb-enroll-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, .26);
}

.bb-enroll-btn-secondary {
    background: #ffffff;
    border: 2px solid var(--cta-primary);
    color: var(--cta-primary);
}

.bb-enroll-btn-secondary:hover {
    background: var(--cta-primary);
    color: #fff;
}

.bb-enroll-btn-phone {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .14);
    color: #000;
}

.bb-enroll-cta-note {
    margin-top: 26px;
    font-size: 14px;
    color: #6b7785;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media(max-width:600px) {
    .bb-enroll-cta-wrap {
        padding: 90px 20px 100px;
    }

    .bb-enroll-cta-wrap h2 {
        font-size: 38px;
    }
}

/* FAQ Section */
.bb-faq-fw {
    width: 100%;
    background: radial-gradient(900px 420px at 12% 18%, rgba(223, 245, 236, .45), transparent 60%), radial-gradient(900px 420px at 88% 30%, rgba(255, 214, 232, .45), transparent 60%), linear-gradient(to bottom, #ffffff, #f7f9ff);
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-faq-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 90px 22px 100px;
}

.bb-faq-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--rainbow-soft);
    color: #444;
}

.bb-faq-wrap h2 {
    font-size: 44px;
    margin: 22px 0 14px;
    color: var(--ink);
}

.bb-faq-desc {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.bb-faq {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bb-faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.bb-faq-question {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.bb-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--rainbow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: .25s ease;
}

.bb-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.bb-faq-answer p {
    padding: 0 26px 24px;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
}

.bb-faq-item.active .bb-faq-answer {
    max-height: 520px;
}

.bb-faq-item.active .bb-faq-toggle {
    transform: rotate(45deg);
}

/* Global Buttons Utility */
.bb-btn {
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
    cursor: pointer;
    background: none;
    text-decoration: none;
    font-family: inherit;
}

.bb-btn-primary {
    background: var(--cta-primary);
    color: #fff;
    border: 2px solid var(--cta-primary);
}

.bb-btn-primary:hover {
    background: var(--cta-primary-hover);
    border-color: var(--cta-primary-hover);
    transform: translateY(-1px);
}

.bb-btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid var(--border);
}

.bb-btn-secondary:hover {
    border-color: #000;
    transform: translateY(-1px);
}

/* Mobile Responsive Utility */
@media (max-width:768px) {
    .bb-hero-wrap h1 {
        font-size: 38px;
    }

    .bb-hero-wrap {
        padding-top: 90px;
    }

    .bb-hero-btns,
    .bb-trust-btns,
    .bb-safety-btns,
    .bb-test-btns,
    .bb-team-btns {
        flex-direction: column;
    }

    .bb-btn,
    .bb-enroll-btn {
        width: 100%;
        box-sizing: border-box;
    }

    /* Ultra-Tight Spacing Refinements */
    .bb-trust-wrap,
    .bb-program-age-wrap,
    .bb-safety-wrap,
    .bb-test-wrap,
    .bb-team-wrap,
    .bb-faq-wrap,
    .bb-enroll-cta-wrap,
    .bb-care-wrap,
    .bb-about2-wrap,
    .bb-about-mission-wrap {
        padding: 20px 20px;
    }

    .bb-trust-cta,
    .bb-test-cta,
    .bb-team-cta {
        margin-top: 16px;
        padding: 16px;
    }

    .bb-trust-btns,
    .bb-safety-btns,
    .bb-test-btns,
    .bb-team-btns,
    .bb-enroll-cta-btns {
        gap: 10px;
        margin-top: 16px;
    }

    .bb-trust-grid,
    .bb-program-age-grid,
    .bb-safety-grid,
    .bb-test-grid,
    .bb-team-grid {
        margin-top: 20px;
        gap: 10px;
    }

    .bb-trust-card,
    .bb-age-card,
    .bb-safety-card,
    .bb-test-card,
    .bb-team-card {
        padding: 16px;
    }

    .bb-trust-wrap h2,
    .bb-program-age-wrap h2,
    .bb-safety-wrap h2,
    .bb-test-wrap h2,
    .bb-team-wrap h2,
    .bb-enroll-cta-wrap h2,
    .bb-faq-wrap h2 {
        font-size: 28px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .bb-program-age-image,
    .bb-test-image,
    .bb-trust-image {
        margin-bottom: 16px;
        margin-top: 0;
    }

    .bb-program-age-kicker,
    .bb-trust-kicker,
    .bb-safety-kicker,
    .bb-test-kicker,
    .bb-team-kicker,
    .bb-enroll-cta-kicker,
    .bb-faq-kicker {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .bb-program-age-image img,
    .bb-test-image img,
    .bb-trust-image img {
        height: 280px;
    }

    .bb-footer {
        padding: 30px 20px 20px;
    }

    .bb-trust-links {
        margin-top: 14px;
    }
}

/* 📱 iPad & Tablet Refinements (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

    .bb-trust-image img,
    .bb-program-age-image img,
    .bb-test-image img,
    .bb-about2-image img,
    .bb-programs-diff-image img,
    .bb-subsidy-image img {
        height: 480px;
        /* Consistently refined height for tablet */
        object-position: center 20%;
    }

    .bb-team-avatar {
        max-height: 280px;
        object-fit: cover;
    }

    .bb-hero-wrap h1,
    .bb-about-hero-wrap h1,
    .bb-programs-hero-wrap h1 {
        font-size: 48px;
    }
}

/* Footer (Original Styles Extended) */
.bb-footer {
    width: 100%;
    padding: 90px 20px 50px;
    font-family: 'Poppins', system-ui, sans-serif;
    background: #f8faf9;
    color: #1f2933;
    border-top: 1px solid rgba(0, 0, 0, .06);
    box-sizing: border-box;
}

.bb-footer-inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Logo */
.bb-footer-logo {
    width: 210px;
    max-width: 80vw;
    margin-bottom: 18px;
}

/* Tagline */
.bb-footer-tagline {
    font-size: 18px;
    font-weight: 600;
    color: #4a5a68;
    margin-bottom: 40px;
}

/* Columns */
.bb-footer-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
    margin-bottom: 45px;
    text-align: left;
}

.bb-footer-col {
    min-width: 220px;
}

.bb-footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1f2933;
}

/* Links */
.bb-footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #4a5a68;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bb-footer-col a:hover {
    text-decoration: underline;
    color: var(--teal);
}

/* Contact text */
.bb-footer-col p {
    font-size: 15px;
    color: #4a5a68;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* License + Google */
.bb-footer-license a {
    font-weight: 700;
    color: var(--teal);
}

/* CTA Button */
.bb-footer-btn {
    display: inline-block;
    margin: 10px auto 0;
    padding: 14px 30px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: var(--teal);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.bb-footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
}

/* Copyright */
.bb-footer-copy {
    margin-top: 45px;
    font-size: 14px;
    color: #6b7785;
}

/* Mobile */
@media(max-width: 700px) {
    .bb-footer-cols {
        gap: 40px;
        text-align: center;
    }
}

/* =========================================
   ABOUT PAGE COMPONENTS
   ========================================= */

/* About Hero */
.bb-about-hero-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    font-family: 'Poppins', system-ui, sans-serif;
    overflow: hidden;
    box-sizing: border-box;
}

.bb-about-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bb-about-hero-fw::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .90), rgba(255, 255, 255, .96));
    z-index: 2;
}

.bb-about-hero-wrap {
    position: relative;
    z-index: 3;
    max-width: 1120px;
    margin: 0 auto;
    padding: 120px 22px 110px;
}

.bb-about-hero-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #2a3a46;
    margin-bottom: 22px;
}

.bb-about-hero-wrap h1 {
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: 0 0 18px;
    color: var(--ink);
    max-width: 900px;
}

.bb-about-hero-desc {
    font-size: 18px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 780px;
}

.bb-about-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.bb-about-hero-trust {
    margin-top: 28px;
    font-size: 15px;
    color: #47525e;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bb-about-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

/* About 2 Section (Why we exist) */
.bb-about2-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: linear-gradient(to bottom, #ffffff, #f7f9ff);
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-about2-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 90px 22px 100px;
}

.bb-about2-image {
    text-align: center;
    margin-bottom: 36px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.bb-about2-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.bb-about2-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #e6f1ff;
    color: #243b6b;
    margin-bottom: 18px;
}

.bb-about2-wrap h2 {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin: 0 0 18px;
    color: var(--ink);
    max-width: 860px;
}

.bb-about2-wrap p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 18px;
    max-width: 760px;
}

.bb-about2-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
}

@media(min-width:600px) {
    .bb-about2-points {
        grid-template-columns: 1fr 1fr;
    }
}

.bb-about2-point {
    font-weight: 700;
    color: #344054;
    font-size: 15px;
}

/* Mission & Values Banner */
.bb-about-mission-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    font-family: 'Poppins', system-ui, sans-serif;
    background: linear-gradient(rgba(255, 255, 255, .94), rgba(255, 255, 255, .97)), url("../images/about-hero.webp") center / cover no-repeat;
}

.bb-about-mission-wrap {
    max-width: 1120px;
    margin: auto;
    padding: 110px 22px 100px;
}

.bb-about-mission-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #2a3a46;
    margin-bottom: 20px;
}

.bb-about-mission-wrap h2 {
    font-size: 44px;
    line-height: 1.12;
    margin-bottom: 18px;
    color: var(--ink);
    max-width: 860px;
}

.bb-about-mission-wrap p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 780px;
    margin-bottom: 16px;
}

.bb-about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 48px;
}

@media(min-width:900px) {
    .bb-about-values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bb-about-value {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .1);
}

.bb-about-value h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--ink);
}

.bb-about-value p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* Care Section (About) */
.bb-care-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: radial-gradient(900px 420px at 12% 20%, rgba(255, 230, 199, .45), transparent 60%), radial-gradient(900px 420px at 88% 30%, rgba(230, 241, 255, .45), transparent 60%), linear-gradient(to bottom, #fff8f1, #ffffff);
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-care-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 90px 22px 100px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
}

@media(min-width:900px) {
    .bb-care-wrap {
        grid-template-columns: 1.05fr .95fr;
        align-items: start;
    }
}

.bb-care-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #333;
    margin-bottom: 18px;
}

.bb-care-wrap h2 {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin: 0 0 16px;
    color: var(--ink);
}

.bb-care-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 16px;
}

.bb-care-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.bb-care-btn {
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bb-care-btn.primary {
    background: #1f7a6b;
    color: #fff;
    border: 2px solid #1f7a6b;
}

.bb-care-btn.secondary {
    background: #fff;
    color: #000;
    border: 2px solid rgba(0, 0, 0, .15);
}

.bb-care-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media(min-width:600px) {
    .bb-care-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bb-care-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .12);
}

.bb-care-card h3 {
    font-size: 17px;
    margin: 0 0 8px;
    color: var(--ink);
}

.bb-care-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* Leadership & Experience */
.bb-about-leadership-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    font-family: 'Poppins', system-ui, sans-serif;
    background: radial-gradient(900px 420px at 12% 20%, rgba(230, 241, 255, .45), transparent 60%), radial-gradient(900px 420px at 88% 30%, rgba(255, 230, 199, .45), transparent 60%), linear-gradient(to bottom, #ffffff, #f7f9ff);
}

.bb-about-leadership-wrap {
    max-width: 1120px;
    margin: auto;
    padding: 100px 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
}

@media(min-width:900px) {
    .bb-about-leadership-wrap {
        grid-template-columns: 1.1fr .9fr;
        align-items: start;
    }
}

.bb-about-leadership-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #333;
    margin-bottom: 18px;
}

.bb-about-leadership-wrap h2 {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin: 0 0 16px;
    color: var(--ink);
}

.bb-about-leadership-wrap p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 16px;
    max-width: 760px;
}

.bb-about-leadership-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .12);
}

.bb-about-leadership-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--ink);
}

.bb-about-leadership-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.9;
    color: var(--muted);
}

.bb-about-leadership-list li {
    margin-bottom: 10px;
    font-weight: 600;
}

/* About Safety Section */
.bb-about-safety-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    font-family: 'Poppins', system-ui, sans-serif;
    background: radial-gradient(900px 420px at 12% 20%, rgba(223, 245, 236, .45), transparent 60%), radial-gradient(900px 420px at 88% 30%, rgba(230, 241, 255, .45), transparent 60%), linear-gradient(to bottom, #ffffff, #f7f9ff);
}

.bb-about-safety-wrap {
    max-width: 1120px;
    margin: auto;
    padding: 100px 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
}

@media(min-width:900px) {
    .bb-about-safety-wrap {
        grid-template-columns: 1.05fr .95fr;
        align-items: start;
    }
}

.bb-about-safety-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #333;
    margin-bottom: 18px;
}

.bb-about-safety-wrap h2 {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin: 0 0 16px;
    color: var(--ink);
}

.bb-about-safety-wrap p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 760px;
    margin-bottom: 16px;
}

.bb-license-badge {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, .12);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    margin-top: 14px;
}

.bb-safety-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .12);
}

.bb-safety-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--ink);
}

.bb-safety-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* Final CTA Section */
.bb-final-cta-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .95)), url("../images/about-classroom.webp") center / cover no-repeat;
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-final-cta-wrap {
    max-width: 1120px;
    margin: auto;
    padding: 120px 22px;
    text-align: center;
}

.bb-final-cta-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #2a3a46;
    margin-bottom: 22px;
}

.bb-final-cta-wrap h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 18px;
    color: var(--ink);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.bb-final-cta-desc {
    font-size: 18px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto 36px;
}

.bb-final-cta-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.bb-final-btn {
    padding: 18px 30px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bb-final-btn-primary {
    background: #1f7a6b;
    color: #fff;
    border: 2px solid #1f7a6b;
}

.bb-final-btn-primary:hover {
    background: #17665a;
    border-color: #17665a;
    transform: translateY(-1px);
}

.bb-final-btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid rgba(0, 0, 0, .12);
}

.bb-final-btn-secondary:hover {
    border-color: #000;
    transform: translateY(-1px);
}

.bb-final-cta-note {
    margin-top: 28px;
    font-size: 14.5px;
    color: #47525e;
    font-weight: 700;
}

/* Responsive Overrides (About) */
@media(max-width:768px) {
    .bb-about-hero-wrap {
        padding: 64px 22px 90px;
    }

    .bb-about-hero-kicker {
        transform: translateY(-22px);
    }

    .bb-about-hero-wrap h1 {
        font-size: 38px;
    }

    .bb-about-hero-btns {
        flex-direction: column;
    }

    .bb-about2-wrap h2 {
        font-size: 34px;
    }

    .bb-about-mission-wrap {
        padding: 90px 22px 80px;
    }

    .bb-about-mission-wrap h2 {
        font-size: 34px;
    }

    .bb-about-leadership-wrap {
        padding: 80px 22px;
    }

    .bb-about-leadership-wrap h2 {
        font-size: 32px;
    }

    .bb-about-safety-wrap {
        padding: 80px 22px;
    }

    .bb-about-safety-wrap h2 {
        font-size: 32px;
    }

    .bb-final-cta-wrap {
        padding: 90px 22px;
    }

    .bb-final-cta-wrap h2 {
        font-size: 36px;
    }

    .bb-final-cta-btns {
        flex-direction: column;
    }

    .bb-final-btn {
        width: 100%;
    }
}

/* =========================================
   PROGRAMS PAGE COMPONENTS
   ========================================= */

/* Programs Hero */
.bb-programs-hero-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    font-family: 'Poppins', system-ui, sans-serif;
    overflow: hidden;
    box-sizing: border-box;
}

.bb-programs-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bb-programs-hero-fw::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .90), rgba(255, 255, 255, .96));
    z-index: 2;
}

.bb-programs-hero-wrap {
    position: relative;
    z-index: 3;
    max-width: 1120px;
    margin: 0 auto;
    padding: 120px 22px 110px;
}

.bb-programs-hero-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #2a3a46;
    margin-bottom: 22px;
}

.bb-programs-hero-wrap h1 {
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: 0 0 18px;
    color: var(--ink);
    max-width: 900px;
}

.bb-programs-hero-desc {
    font-size: 18px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 780px;
}

.bb-programs-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.bb-programs-hero-trust {
    margin-top: 28px;
    font-size: 15px;
    color: #47525e;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bb-programs-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

/* School Readiness & Curriculum */
.bb-curriculum-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    font-family: 'Poppins', system-ui, sans-serif;
    background: linear-gradient(rgba(255, 255, 255, .92), rgba(255, 255, 255, .96)), url("../images/programs-curriculum.webp") center / cover no-repeat;
}

.bb-curriculum-wrap {
    max-width: 1120px;
    margin: auto;
    padding: 100px 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
}

@media(min-width:900px) {
    .bb-curriculum-wrap {
        grid-template-columns: 1.1fr .9fr;
        align-items: start;
    }
}

.bb-curriculum-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #2a3a46;
    margin-bottom: 18px;
}

.bb-curriculum-wrap h2 {
    font-size: 44px;
    color: #1f2933;
    margin-bottom: 16px;
}

.bb-curriculum-desc {
    font-size: 18px;
    line-height: 1.85;
    color: #5f6b7a;
    max-width: 720px;
}

.bb-curriculum-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media(min-width:600px) {
    .bb-curriculum-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bb-curriculum-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
}

.bb-curriculum-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #1f2933;
}

.bb-curriculum-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5f6b7a;
}

/* A Day at Bigger Blessings */
.bb-day-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    font-family: 'Poppins', system-ui, sans-serif;
    background: radial-gradient(900px 420px at 15% 20%, rgba(223, 245, 236, .55), transparent 60%), radial-gradient(900px 420px at 85% 30%, rgba(230, 241, 255, .55), transparent 60%), linear-gradient(to bottom, #ffffff, #f7f9ff);
}

.bb-day-wrap {
    max-width: 1120px;
    margin: auto;
    padding: 110px 22px 120px;
    text-align: center;
}

.bb-day-wrap h2 {
    font-size: 46px;
    line-height: 1.12;
    margin-bottom: 18px;
    color: #1f2933;
    letter-spacing: -.02em;
}

.bb-day-desc {
    font-size: 18px;
    line-height: 1.85;
    color: #5f6b7a;
    max-width: 760px;
    margin: 0 auto;
}

.bb-day-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 56px;
}

@media(min-width:900px) {
    .bb-day-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bb-day-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 28px;
    padding: 30px 26px 32px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .10);
    text-align: left;
    position: relative;
}

.bb-day-step {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e6f1ff, #dff5ec);
    color: #245;
    margin-bottom: 14px;
}

.bb-day-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #1f2933;
}

.bb-day-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5f6b7a;
    margin: 0;
}

/* What Sets Our Programs Apart (Diff) */
.bb-programs-diff-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ffffff;
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-programs-diff-wrap {
    max-width: 1120px;
    margin: auto;
    padding: 100px 22px;
}

.bb-programs-diff-image {
    max-width: 820px;
    margin: 0 auto 48px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 52px rgba(0, 0, 0, .12);
}

.bb-programs-diff-image img {
    width: 100%;
    max-width: 820px;
    height: 500px;
    /* Refined vertical space */
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.bb-programs-diff-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #2a3a46;
    margin-bottom: 18px;
}

.bb-programs-diff-wrap h2 {
    font-size: 44px;
    margin-bottom: 18px;
    color: #1f2933;
}

.bb-programs-diff-desc {
    font-size: 18px;
    line-height: 1.85;
    color: #5f6b7a;
    max-width: 780px;
}

.bb-programs-diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 46px;
}

@media(min-width:900px) {
    .bb-programs-diff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bb-programs-diff-card {
    background: #f9fbff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
}

.bb-programs-diff-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1f2933;
}

.bb-programs-diff-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5f6b7a;
}

/* Subsidy Assist */
.bb-subsidy-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f9fbff;
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-subsidy-wrap {
    max-width: 1120px;
    margin: auto;
    padding: 100px 22px;
}

.bb-subsidy-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media(min-width:900px) {
    .bb-subsidy-top {
        grid-template-columns: 1.1fr .9fr;
        align-items: start;
    }
}

.bb-subsidy-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #2a3a46;
    margin-bottom: 18px;
}

.bb-subsidy-wrap h2 {
    font-size: 44px;
    color: #1f2933;
    margin-bottom: 18px;
}

.bb-subsidy-desc {
    font-size: 18px;
    line-height: 1.85;
    color: #5f6b7a;
    max-width: 720px;
}

.bb-subsidy-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 52px rgba(0, 0, 0, .12);
}

.bb-subsidy-image img {
    width: 100%;
    max-width: 820px;
    height: 500px;
    /* Refined vertical space */
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.bb-subsidy-card {
    margin-top: 64px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .12);
    max-width: 880px;
}

@media(min-width:900px) {
    .bb-subsidy-card {
        margin-left: auto;
        margin-right: auto;
    }
}

.bb-subsidy-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1f2933;
}

.bb-subsidy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.9;
    color: #5f6b7a;
}

.bb-subsidy-list li {
    margin-bottom: 10px;
}

/* Programs Responsive Overrides */
@media(max-width:768px) {
    .bb-programs-hero-wrap {
        padding: 90px 22px 90px;
    }

    .bb-programs-hero-wrap h1 {
        font-size: 38px;
    }

    .bb-programs-hero-btns {
        flex-direction: column;
    }

    .bb-program-age-wrap {
        padding: 80px 22px;
    }

    .bb-program-age-wrap h2 {
        font-size: 32px;
    }

    .bb-curriculum-wrap {
        padding: 80px 22px;
    }

    .bb-curriculum-wrap h2 {
        font-size: 32px;
    }

    .bb-day-wrap h2 {
        font-size: 38px;
    }

    .bb-programs-diff-wrap {
        padding: 80px 22px;
    }

    .bb-programs-diff-wrap h2 {
        font-size: 32px;
    }

    .bb-subsidy-wrap {
        padding: 80px 22px;
    }

    .bb-subsidy-wrap h2 {
        font-size: 32px;
    }
}

/* =========================================
   CONTACT PAGE COMPONENTS
   ========================================= */

/* Contact Hero */
.bb-contact-hero-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: linear-gradient(rgba(255, 255, 255, .92), rgba(255, 255, 255, .96)), url("../images/about-classroom.webp") center / cover no-repeat;
    font-family: 'Poppins', system-ui, sans-serif;
}

.bb-contact-hero-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 110px 22px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: flex-start;
}

.bb-contact-copy h1 {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--ink);
}

.bb-contact-copy p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 520px;
}

.bb-contact-trust {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 15px;
    font-weight: 700;
    color: #47525e;
}

.bb-contact-verify {
    margin-top: 34px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
    max-width: 520px;
}

.bb-contact-verify h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--ink);
}

.bb-contact-verify a {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.bb-contact-verify a:hover {
    text-decoration: underline;
}

.bb-contact-verify span {
    display: block;
    font-size: 14px;
    color: #5f6b7a;
    margin-top: 10px;
}

.bb-contact-form {
    background: #ffffff;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 22px 52px rgba(0, 0, 0, .12);
}

@media(max-width:900px) {
    .bb-contact-hero-wrap {
        grid-template-columns: 1fr;
        padding: 90px 22px;
    }

    .bb-contact-copy h1 {
        font-size: 36px;
    }
}

/* =========================================
   HOMEPAGE HERO SLIDER
   ========================================= */
#bbpHeroSlider {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
    background: #000;
    /* Fallback */
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.slide-content {
    max-width: 720px;
    padding: 0 5%;
    color: #fff;
    position: relative;
    z-index: 3;
    animation: slideUpFade 0.8s ease forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h4 {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.slide-content h1 {
    font-size: 58px;
    line-height: 1.05;
    margin-bottom: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.slide-cta {
    display: inline-block;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    gap: 12px;
    z-index: 10;
    align-items: center;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
    font-size: 18px;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media(max-width: 900px) {
    #bbpHeroSlider {
        height: 75vh;
    }

    .slide-content h1 {
        font-size: 38px;
    }

    .slide-content h4 {
        font-size: 16px;
        color: #fff;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slider-controls {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .slide-content {
        padding: 0 22px;
        text-align: center;
    }

    .slide-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================
   ENROLLMENT PAGE COMPONENTS
   ========================================= */

/* Enrollment Hero */
.bb-enroll-hero-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.97)), url("../images/hero.webp") center / cover no-repeat;
    padding: 100px 22px;
    text-align: center;
}

.bb-enroll-hero-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.bb-enroll-hero-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: #eef3ff;
    color: #333;
    margin-bottom: 22px;
}

.bb-enroll-hero-wrap h1 {
    font-size: 52px;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 24px;
}

.bb-enroll-hero-wrap p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 34px;
}

.bb-enroll-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Process Section */
.bb-process-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f8fbff;
    padding: 100px 22px;
}

.bb-process-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.bb-process-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.bb-process-kicker {
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bb-process-intro h2 {
    font-size: 42px;
    margin-bottom: 18px;
}

.bb-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bb-process-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.bb-process-card:hover {
    transform: translateY(-5px);
}

.bb-process-num {
    font-size: 60px;
    font-weight: 900;
    color: rgba(31, 122, 107, 0.08);
    position: absolute;
    top: 10px;
    right: 20px;
}

.bb-process-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--ink);
    position: relative;
    z-index: 2;
}

.bb-process-card p {
    color: var(--muted);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Documentation & Subsidies */
.bb-docs-fw {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #fff;
    padding: 100px 22px;
}

.bb-docs-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bb-docs-kicker {
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bb-docs-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.bb-docs-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.bb-docs-list li {
    padding: 12px 0;
    display: flex;
    gap: 12px;
    font-size: 17px;
    color: var(--ink);
    font-weight: 600;
}

.bb-docs-list li span {
    color: var(--accent);
}

.bb-subsidy-card {
    background: linear-gradient(135deg, #1f7a6b, #17665a);
    padding: 50px;
    border-radius: 34px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(31, 122, 107, 0.2);
}

.bb-subsidy-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.bb-subsidy-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.bb-subsidy-list li {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}

.bb-subsidy-note {
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
    line-height: 1.6;
}

@media(max-width: 900px) {
    .bb-enroll-hero-wrap h1 {
        font-size: 36px;
    }

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

    .bb-subsidy-card {
        padding: 30px;
    }
}

/* =========================================
   UNIVERSAL MOBILE HARDENING (SITEPIDE)
   ========================================= */
@media (max-width: 768px) {
    section {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    h1 {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    h3 {
        font-size: 22px !important;
    }

    .bbp-container {
        height: 70px;
    }

    .bbp-logo img {
        max-height: 40px;
    }

    /* Fix for grids */
    .bb-process-grid,
    .bb-trust-grid,
    .bb-program-age-grid,
    .bb-safety-grid,
    .bb-test-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Fix for flex layouts */
    .bb-hero-btns,
    .bb-enroll-hero-btns,
    .bb-final-cta-btns,
    .bb-contact-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .bb-btn,
    .bb-enroll-btn,
    .bb-enroll-hero-btns a,
    .bb-enroll-hero-btns button {
        width: 100% !important;
        text-align: center;
    }

    /* Contact Page Adjustments */
    .bb-contact-row {
        gap: 40px !important;
    }

    .bb-contact-hero-fw,
    .bb-about-hero-fw,
    .bb-programs-hero-fw,
    .bb-enroll-hero-fw {
        padding: 40px 22px 30px !important;
    }
}