.bbte2-menu,
.bbte2-menu *,
.bbte2-hero,
.bbte2-hero *,
.bbte2-builder-preview,
.bbte2-builder-preview * {
    box-sizing: border-box;
}

.bbte2-menu {
    --bbte-primary: #0A4BCC;
    --bbte-secondary: #FFD200;
    --bbte-accent: #FF7A00;
    --bbte-success: #0DBD48;
    --bbte-dark: #06245C;
    --bbte-light: #FFFFFF;
    --bbte-menu-bg: #FFFFFF;
    width: 100%;
    max-width: 100%;
    position: relative;
    background: var(--bbte-menu-bg);
    font-family: Inter, Poppins, Arial, sans-serif;
    z-index: 50;
}

.bbte2-menu a,
.bbte2-menu button {
    -webkit-tap-highlight-color: transparent;
}

.bbte2-menu__inner {
    max-width: 1240px;
    margin: 0 auto;
    min-height: 76px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 0;
}

.bbte2-menu__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bbte-primary);
    text-decoration: none;
    flex: 0 0 auto;
    min-width: 0;
}

.bbte2-menu__logo:hover {
    color: var(--bbte-primary);
    text-decoration: none;
}

.bbte2-menu__logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bbte-primary);
    color: #fff;
    border-radius: 13px;
    flex: 0 0 auto;
}

.bbte2-menu__logo-mark svg,
.bbte2-menu__logo-mark i {
    width: 21px;
    height: 21px;
    font-size: 21px;
}

.bbte2-menu svg path {
    fill: currentColor;
}

.bbte2-menu__logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}

.bbte2-menu__logo-text strong {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.bbte2-menu__logo-text small {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .36em;
    white-space: nowrap;
}

.bbte2-menu__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex: 1 1 auto;
    min-width: 0;
}

.bbte2-menu__link {
    position: relative;
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    padding: 8px 0;
}

.bbte2-menu__link:hover,
.bbte2-menu__link.is-active {
    color: var(--bbte-accent);
    text-decoration: none;
}

.bbte2-menu__link.is-active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--bbte-accent);
}

.bbte2-menu__cta,
.bbte2-menu__drawer-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    background: var(--bbte-secondary);
    color: #111;
    border-radius: 12px;
    text-decoration: none;
    padding: 9px 16px;
    line-height: 1;
    flex-shrink: 0;
}

.bbte2-menu__cta:hover,
.bbte2-menu__drawer-cta:hover {
    color: #111;
    text-decoration: none;
}

.bbte2-menu__cta strong,
.bbte2-menu__drawer-cta strong {
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
}

.bbte2-menu__cta small,
.bbte2-menu__drawer-cta small {
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.bbte2-menu__mobile-actions {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: auto;
    flex: 0 0 auto;
}

.bbte2-menu__mobile-call {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--bbte-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bbte2-menu__trigger {
    border: 0;
    outline: 0;
    padding: 0;
    background: transparent;
    color: var(--bbte-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-height: 42px;
    line-height: 1;
    flex: 0 0 auto;
}

.bbte2-menu__trigger-text {
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
}

.bbte2-menu__trigger-bars {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    width: 18px;
}

.bbte2-menu__trigger-bars span {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.bbte2-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9997;
    transition: opacity .25s ease, visibility .25s ease;
}

.bbte2-menu__drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 92vw;
    height: 100vh;
    overflow-y: auto;
    background: #003F9E;
    color: #fff;
    z-index: 9998;
    transform: translateX(104%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 24px 20px;
    transition: transform .28s ease, opacity .28s ease, visibility .28s ease;
    box-shadow: -20px 0 50px rgba(15,23,42,.28);
}

.bbte2-menu.is-open .bbte2-menu__overlay,
.bbte2-menu.is-open .bbte2-menu__drawer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.bbte2-menu.is-open .bbte2-menu__drawer {
    transform: translateX(0);
}

html.bbte2-lock-scroll,
body.bbte2-lock-scroll {
    overflow: hidden;
}

.bbte2-menu__drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.bbte2-menu__drawer-logo {
    display: flex;
    flex-direction: column;
    font-weight: 900;
    font-size: 19px;
    line-height: 1;
}

.bbte2-menu__drawer-logo small {
    font-size: 10px;
    letter-spacing: .32em;
    opacity: .9;
}

.bbte2-menu__close {
    border: 0;
    background: rgba(255,255,255,.14);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.bbte2-menu__drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bbte2-menu__drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: currentColor;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    font-size: 16px;
    font-weight: 800;
}

.bbte2-menu__drawer-link:hover {
    color: currentColor;
    background: rgba(255,255,255,.16);
    text-decoration: none;
}

.bbte2-menu__drawer-link.is-active {
    color: #111;
    background: var(--bbte-secondary);
}

.bbte2-menu__drawer-icon {
    display: inline-flex;
    width: 24px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.bbte2-menu__drawer-cta {
    width: 100%;
    margin-top: 22px;
}

/* Hero */
.bbte2-hero {
    --bbte-primary: #0A4BCC;
    --bbte-secondary: #FFD200;
    --bbte-accent: #FF7A00;
    --bbte-success: #0DBD48;
    --bbte-dark: #06245C;
    --bbte-light: #FFFFFF;
    --bbte-hero-bg: #FFFFFF;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: var(--bbte-hero-bg);
    padding: 72px 0 50px;
    font-family: Inter, Poppins, Arial, sans-serif;
}

.bbte2-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 56px;
}

.bbte2-hero__content,
.bbte2-hero__visual {
    min-width: 0;
}

.bbte2-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bbte-accent);
    color: #fff;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 18px;
}

.bbte2-hero__badge svg {
    width: 14px;
    height: 14px;
}

.bbte2-hero svg path {
    fill: currentColor;
}

.bbte2-hero__headline {
    color: var(--bbte-dark);
    font-size: clamp(42px, 5vw, 66px);
    line-height: .96;
    letter-spacing: -0.055em;
    font-weight: 950;
    margin: 0 0 12px;
    max-width: 680px;
    overflow-wrap: anywhere;
}

.bbte2-hero__highlight {
    display: inline;
    color: #111;
    background: var(--bbte-secondary);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 3px 10px;
    border-radius: 7px;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 900;
    line-height: 1.28;
}

.bbte2-hero__desc {
    margin: 22px 0 26px;
    max-width: 580px;
    color: #243044;
    font-size: 17px;
    line-height: 1.65;
}

.bbte2-hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 10px;
}

.bbte2-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 13px;
    padding: 16px 22px;
    line-height: 1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    min-height: 52px;
    transition: transform .2s ease, background-color .2s ease;
}

.bbte2-hero__btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.bbte2-hero__btn svg,
.bbte2-hero__btn i {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.bbte2-hero__btn--primary {
    background: var(--bbte-success);
    color: #fff;
}

.bbte2-hero__btn--primary:hover {
    background: #069A39;
    color: #fff;
}

.bbte2-hero__btn--secondary {
    background: var(--bbte-secondary);
    color: #111;
}

.bbte2-hero__btn--secondary:hover {
    background: #FFB800;
    color: #111;
}

.bbte2-hero__cta-note {
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
    margin: 8px 0 0;
}

.bbte2-hero__trust {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
}

.bbte2-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15,23,42,.08);
    min-width: 0;
}

.bbte2-hero__trust-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(10,75,204,.09);
    color: var(--bbte-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.bbte2-hero__trust-icon svg,
.bbte2-hero__trust-icon i {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

.bbte2-hero__trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.bbte2-hero__trust-text strong {
    color: var(--bbte-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
}

.bbte2-hero__trust-text small {
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.bbte2-hero__visual-card {
    position: relative;
    min-height: 520px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(10,75,204,.08), rgba(255,210,0,.15));
    overflow: visible;
}

.bbte2-hero__skyline {
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    max-height: 55%;
    object-fit: cover;
    opacity: .55;
    z-index: 1;
    border-radius: 0 0 30px 30px;
}

.bbte2-hero__primary-img {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: min(620px, 105%);
    max-width: 105%;
    height: auto;
    z-index: 3;
    filter: drop-shadow(var(--bbte-primary-img-shadow-x, 0px) var(--bbte-primary-img-shadow-y, 24px) var(--bbte-primary-img-shadow-blur, 34px) var(--bbte-primary-img-shadow-color, rgba(15,23,42,.24)));
}

.bbte2-hero__secondary-img {
    position: absolute;
    right: 20px;
    bottom: 18px;
    width: min(320px, 48%);
    max-width: 48%;
    height: auto;
    z-index: 4;
    filter: drop-shadow(var(--bbte-secondary-img-shadow-x, 0px) var(--bbte-secondary-img-shadow-y, 24px) var(--bbte-secondary-img-shadow-blur, 32px) var(--bbte-secondary-img-shadow-color, rgba(15,23,42,.22)));
}

.bbte2-hero__placeholder {
    position: absolute;
    inset: 38px;
    border: 2px dashed rgba(10,75,204,.24);
    border-radius: 24px;
    color: var(--bbte-primary);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255,255,255,.55);
}

.bbte2-hero__placeholder span {
    font-size: 52px;
}

.bbte2-hero__floating {
    position: absolute;
    right: 22px;
    top: 24px;
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    background: var(--bbte-secondary);
    color: #111;
    text-decoration: none;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 14px 30px rgba(15,23,42,.18);
}

.bbte2-hero__floating:hover {
    color: #111;
    text-decoration: none;
}

.bbte2-hero__floating strong {
    font-size: 18px;
    font-weight: 950;
    line-height: 1;
}

.bbte2-hero__floating small {
    font-size: 11px;
    font-weight: 700;
}

.bbte2-hero__wave {
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -60px;
    height: 130px;
    z-index: 1;
    background:
        radial-gradient(70% 110% at 30% 0%, var(--bbte-wave-yellow, var(--bbte-secondary)) 0 35%, transparent 36%),
        radial-gradient(80% 120% at 65% 10%, var(--bbte-wave-blue, var(--bbte-primary)) 0 46%, transparent 47%);
    opacity: .95;
    pointer-events: none;
}

/* Builder */
.bbte2-builder-preview {
    padding: 28px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(10,75,204,.12);
}

.bbte2-builder-menu {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.bbte2-builder-hero h2 {
    color: var(--bbte-primary, #0A4BCC);
    font-size: 36px;
    margin: 8px 0;
}

.bbte2-builder-placeholder {
    text-align: center;
    color: #334155;
}

/* Responsive */
@media (max-width: 1024px) {
    .bbte2-menu__inner {
        gap: 16px;
    }

    .bbte2-menu__nav {
        gap: 18px;
    }

    .bbte2-menu__link {
        font-size: 13px;
    }

    .bbte2-hero-tablet-stack .bbte2-hero__container,
    .bbte2-hero__container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .bbte2-hero-tablet-two .bbte2-hero__container {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    }

    .bbte2-hero__visual-card {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .bbte2-menu__inner {
        min-height: 64px;
        padding: 10px 14px;
        gap: 10px;
    }

    .bbte2-menu__nav,
    .bbte2-menu__cta {
        display: none;
    }

    .bbte2-menu__mobile-actions {
        display: inline-flex;
    }

    .bbte2-menu__logo {
        flex: 1 1 auto;
        overflow: hidden;
    }

    .bbte2-menu__logo-mark {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .bbte2-menu__logo-text strong {
        font-size: 16px;
    }

    .bbte2-menu__logo-text small {
        font-size: 8px;
    }

    .bbte2-hero {
        padding: 32px 0 28px;
        overflow-x: hidden;
    }

    .bbte2-hero__container {
        padding: 0 16px;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .bbte2-hero__headline {
        font-size: 36px;
        letter-spacing: -0.045em;
    }

    .bbte2-hero__highlight {
        font-size: 19px;
    }

    .bbte2-hero__desc {
        font-size: 14.5px;
        line-height: 1.58;
        margin: 18px 0 22px;
    }

    .bbte2-hero-mobile-cta-full-yes .bbte2-hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .bbte2-hero-mobile-cta-full-yes .bbte2-hero__btn {
        width: 100%;
    }

    .bbte2-hero__trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .bbte2-hero__trust-item {
        align-items: flex-start;
        padding: 10px;
    }

    .bbte2-hero__trust-icon {
        width: 30px;
        height: 30px;
    }

    .bbte2-hero__visual-card {
        min-height: auto;
        padding: 20px;
        overflow: hidden;
    }

    .bbte2-hero__skyline,
    .bbte2-hero__primary-img,
    .bbte2-hero__secondary-img {
        position: relative;
        inset: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

    .bbte2-hero__secondary-img {
        width: 70%;
        margin-top: -40px;
    }

    .bbte2-hero-hide-float-mobile-yes .bbte2-hero__floating {
        display: none;
    }

    .bbte2-hero__placeholder {
        position: relative;
        inset: auto;
        min-height: 240px;
    }

    .bbte2-hero__wave {
        height: 70px;
        bottom: -38px;
    }
}

@media (max-width: 390px) {
    .bbte2-hero__headline {
        font-size: 34px;
    }

    .bbte2-hero__trust-text strong {
        font-size: 12px;
    }

    .bbte2-hero__trust-text small {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .bbte2-menu__inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .bbte2-menu__trigger-text {
        font-size: 15px;
    }

    .bbte2-hero__container {
        padding: 0 14px;
    }

    .bbte2-hero__headline {
        font-size: 32px;
    }

    .bbte2-hero__highlight {
        font-size: 18px;
    }
}


/* V2.0.7 Hero Visual Images Style Controls */
.bbte2-hero__visual-card--no-bg {
    background: transparent !important;
    box-shadow: none;
}

.bbte2-hero__visual-card--overflow-visible {
    overflow: visible;
}

.bbte2-hero__visual-card--no-bg .bbte2-hero__skyline {
    opacity: 0;
}


/* V2.0.8 Hero Complete Style Control Helpers */
.bbte2-hero__badge svg,
.bbte2-hero__btn svg,
.bbte2-hero__trust-icon svg {
    color: currentColor;
}

.bbte2-hero__badge svg path,
.bbte2-hero__btn svg path,
.bbte2-hero__trust-icon svg path {
    fill: currentColor;
}


/* V2.1.0 Priority Section Renderers */
.bbte2-section-container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.bbte2-section-container--narrow {
    max-width: 980px;
}

.bbte2-section-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.bbte2-section-eyebrow {
    display: inline-flex;
    color: var(--bbte-accent, #FF7A00);
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 12px;
    margin-bottom: 10px;
}

.bbte2-section-title {
    color: var(--bbte-dark, #06245C);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 950;
    margin: 0 0 12px;
}

.bbte2-section-subtitle {
    color: #475569;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

.bbte2-services,
.bbte2-testimonials,
.bbte2-faq,
.bbte2-cta,
.bbte2-footer {
    font-family: Inter, Poppins, Arial, sans-serif;
    width: 100%;
    overflow: hidden;
}

.bbte2-services {
    padding: 70px 0;
    background: #fff;
}

.bbte2-services__grid,
.bbte2-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bbte2-service-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}

.bbte2-service-card:hover {
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .12);
}

.bbte2-service-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bbte-primary, #0A4BCC);
    color: #fff;
    margin-bottom: 18px;
}

.bbte2-service-card__icon svg {
    width: 24px;
    height: 24px;
}

.bbte2-service-card__icon svg path,
.bbte2-cta svg path,
.bbte2-footer svg path {
    fill: currentColor;
}

.bbte2-service-card h3 {
    color: var(--bbte-dark, #06245C);
    font-size: 20px;
    line-height: 1.15;
    margin: 0 0 10px;
    font-weight: 900;
}

.bbte2-service-card p {
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.bbte2-cta {
    padding: 50px 0;
}

.bbte2-cta__box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    background: var(--bbte-primary, #0A4BCC);
    color: #fff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(10, 75, 204, .24);
}

.bbte2-cta__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bbte-secondary, #FFD200);
    color: var(--bbte-dark, #06245C);
}

.bbte2-cta__icon svg {
    width: 34px;
    height: 34px;
}

.bbte2-cta__headline {
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.05;
    margin: 0 0 8px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.bbte2-cta__desc {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    opacity: .92;
}

.bbte2-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.bbte2-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 16px 20px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.bbte2-cta__btn:hover {
    text-decoration: none;
}

.bbte2-cta__btn--wa {
    background: var(--bbte-success, #0DBD48);
    color: #fff;
}

.bbte2-cta__btn--phone {
    background: var(--bbte-secondary, #FFD200);
    color: #111;
}

.bbte2-testimonials {
    padding: 70px 0;
    background: #f8fbff;
}

.bbte2-testimonials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bbte2-testimonial-card {
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
}

.bbte2-testimonial-card__stars {
    color: var(--bbte-secondary, #FFD200);
    letter-spacing: .08em;
    margin-bottom: 16px;
    font-size: 18px;
}

.bbte2-testimonial-card__text {
    color: #334155;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 18px;
}

.bbte2-testimonial-card__name {
    color: var(--bbte-dark, #06245C);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 4px;
}

.bbte2-testimonial-card__location {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.bbte2-faq {
    padding: 70px 0;
    background: #fff;
}

.bbte2-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bbte2-faq-item {
    background: #f8fbff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}

.bbte2-faq-item summary {
    cursor: pointer;
    color: var(--bbte-dark, #06245C);
    font-weight: 900;
    font-size: 16px;
    list-style: none;
}

.bbte2-faq-item summary::-webkit-details-marker {
    display: none;
}

.bbte2-faq-item p {
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
    margin: 12px 0 0;
}

.bbte2-footer {
    padding: 56px 0 24px;
    background: var(--bbte-dark, #06245C);
    color: #fff;
}

.bbte2-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, .7fr) minmax(220px, .9fr);
    gap: 40px;
}

.bbte2-footer__logo-mark {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bbte-secondary, #FFD200);
    margin-bottom: 14px;
}

.bbte2-footer__logo-mark svg {
    width: 42px;
    height: 42px;
}

.bbte2-footer h2,
.bbte2-footer h3 {
    margin: 0 0 14px;
    font-weight: 950;
    line-height: 1.1;
}

.bbte2-footer p {
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    margin: 0;
}

.bbte2-footer__links,
.bbte2-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.bbte2-footer a {
    color: var(--bbte-secondary, #FFD200);
    text-decoration: none;
    font-weight: 800;
}

.bbte2-footer a:hover {
    text-decoration: underline;
}

.bbte2-footer__bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .bbte2-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bbte2-testimonials__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bbte2-cta__box {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .bbte2-cta__actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .bbte2-section-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bbte2-section-head {
        margin-bottom: 24px;
        text-align: left;
    }

    .bbte2-services,
    .bbte2-testimonials,
    .bbte2-faq {
        padding: 48px 0;
    }

    .bbte2-services__grid,
    .bbte2-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .bbte2-cta__box {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 22px;
    }

    .bbte2-cta__actions {
        flex-direction: column;
    }

    .bbte2-cta__btn {
        width: 100%;
    }

    .bbte2-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


/* V2.1.1 Hero Image Shadow Control Notes */
.bbte2-hero__primary-img,
.bbte2-hero__secondary-img {
    will-change: filter;
}


/* V2.1.2 Hero Text Line Break Fix */
.bbte2-hero__headline br,
.bbte2-hero__highlight br,
.bbte2-hero__desc br,
.bbte2-hero__cta-note br {
    display: block;
    content: "";
}


/* V2.1.3 Hero Mobile Layout Controls */
@media (max-width: 767px) {
    .bbte2-hero-mobile-align-center .bbte2-hero__headline,
    .bbte2-hero-mobile-align-center .bbte2-hero__desc,
    .bbte2-hero-mobile-align-center .bbte2-hero__cta-note {
        text-align: center;
    }

    .bbte2-hero-mobile-align-center .bbte2-hero__badge {
        margin-left: auto;
        margin-right: auto;
        justify-self: center;
    }

    .bbte2-hero-mobile-align-center .bbte2-hero__highlight {
        text-align: center;
    }

    .bbte2-hero-mobile-highlight-block .bbte2-hero__highlight,
    .bbte2-hero-mobile-highlight-full_width .bbte2-hero__highlight {
        display: block;
        width: fit-content;
        max-width: 100%;
    }

    .bbte2-hero-mobile-align-center.bbte2-hero-mobile-highlight-block .bbte2-hero__highlight,
    .bbte2-hero-mobile-align-center.bbte2-hero-mobile-highlight-full_width .bbte2-hero__highlight {
        margin-left: auto;
        margin-right: auto;
    }

    .bbte2-hero-mobile-highlight-full_width .bbte2-hero__highlight {
        width: 100%;
        box-decoration-break: initial;
        -webkit-box-decoration-break: initial;
    }

    .bbte2-hero-hide-note-mobile .bbte2-hero__cta-note {
        display: none;
    }

    .bbte2-hero-hide-trust-mobile .bbte2-hero__trust {
        display: none;
    }

    .bbte2-hero-mobile-visual-after_description_before_cta .bbte2-hero__content {
        display: contents;
    }

    .bbte2-hero-mobile-visual-after_description_before_cta .bbte2-hero__badge {
        order: 1;
    }

    .bbte2-hero-mobile-visual-after_description_before_cta .bbte2-hero__headline {
        order: 2;
    }

    .bbte2-hero-mobile-visual-after_description_before_cta .bbte2-hero__highlight {
        order: 3;
    }

    .bbte2-hero-mobile-visual-after_description_before_cta .bbte2-hero__desc {
        order: 4;
    }

    .bbte2-hero-mobile-visual-after_description_before_cta .bbte2-hero__visual {
        order: 5;
        width: 100%;
    }

    .bbte2-hero-mobile-visual-after_description_before_cta .bbte2-hero__cta-group {
        order: 6;
    }

    .bbte2-hero-mobile-visual-after_description_before_cta .bbte2-hero__cta-note {
        order: 7;
    }

    .bbte2-hero-mobile-visual-after_description_before_cta .bbte2-hero__trust {
        order: 8;
        width: 100%;
    }

    .bbte2-hero-mobile-visual-after_description_before_cta .bbte2-hero__visual-card {
        width: 100%;
    }
}
