:root {
    --bc-primary: #123F73;
    --bc-deep: #0B2D57;
    --bc-turquoise: #1FB4C3;
    --bc-cyan: #40CBD2;
    --bc-bg: #F4F8FC;
    --bc-surface: #FFFFFF;
    --bc-text: #0E2440;
    --bc-muted: #5C708A;
    --bc-border: #E2EAF2;
    --bc-shell: 1360px;
    --bc-promo-height: 34px;
    --bc-header-height: 86px;
    --bc-radius-button: 12px;
    --bc-transition: 170ms ease;
}

* { box-sizing: border-box; }
html { margin: 0; }
body.bc-commercial {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--bc-text);
    background: var(--bc-surface);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.bc-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { font: inherit; }
img { max-width: 100%; }
.bc-icon { width: 22px; height: 22px; flex: 0 0 auto; }
.bc-shell { width: min(calc(100% - 48px), var(--bc-shell)); margin-inline: auto; }
.bc-skip-link {
    position: fixed; left: 18px; top: -80px; z-index: 99999; padding: 10px 14px;
    color: var(--bc-primary); background: #fff; border: 1px solid var(--bc-border); border-radius: 8px;
    box-shadow: 0 12px 30px rgba(11,45,87,.12);
}
.bc-skip-link:focus { top: 18px; }

/* Global sticky header */
.bc-global-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}
.admin-bar .bc-global-header { top: 32px; }

/* Slim migration bar */
.bc-promo-bar {
    min-height: var(--bc-promo-height);
    color: #fff;
    background: linear-gradient(90deg, #103D77 0%, #0A4A91 55%, #123F73 100%);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.bc-promo-bar__inner {
    min-height: var(--bc-promo-height);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 12.5px;
    line-height: 1;
}
.bc-promo-bar__inner strong { font-weight: 800; letter-spacing: .035em; }
.bc-promo-bar__inner > span:not(.bc-promo-bar__divider) { color: rgba(255,255,255,.92); font-weight: 550; }
.bc-promo-bar__divider { width: 1px; height: 15px; background: rgba(255,255,255,.45); }
.bc-promo-bar__inner a {
    display: inline-flex; align-items: center; justify-content: center; min-height: 26px; padding: 0 11px;
    border: 1px solid rgba(64,203,210,.78); border-radius: 8px; color: #fff; font-weight: 750;
    background: rgba(255,255,255,.035); transition: background var(--bc-transition), border-color var(--bc-transition);
}
.bc-promo-bar__inner a:hover,
.bc-promo-bar__inner a:focus-visible { background: rgba(31,180,195,.22); border-color: var(--bc-cyan); outline: none; }

/* Main navigation */
.bc-site-header {
    min-height: var(--bc-header-height);
    background: rgba(255,255,255,.985);
    border-bottom: 1px solid rgba(226,234,242,.9);
    box-shadow: 0 5px 16px rgba(11,45,87,.045);
    backdrop-filter: blur(14px);
}
.bc-site-header__inner {
    min-height: var(--bc-header-height);
    display: flex;
    align-items: center;
    gap: 42px;
}
.bc-brand { display: inline-flex; align-items: center; flex: 0 0 auto; width: 232px; min-height: 44px; }
.bc-brand img { display: block; width: 232px; height: auto; }
.bc-main-nav { display: flex; align-items: center; justify-content: center; gap: 10px; flex: 1 1 auto; min-width: 0; }
.bc-main-nav__item {
    position: relative; display: inline-flex; align-items: center; justify-content: center; min-height: 46px;
    padding: 0 12px; border: 0; border-radius: 9px; background: transparent; color: #24455F;
    font-size: 14px; font-weight: 680; line-height: 1; letter-spacing: -.01em; white-space: nowrap; cursor: pointer;
    transition: color var(--bc-transition), background-color var(--bc-transition);
}
.bc-main-nav__item:hover,
.bc-main-nav__item:focus-visible,
.bc-main-nav__item.is-active { color: var(--bc-primary); background: #F7FAFD; outline: none; }
.bc-main-nav__item.is-active::before {
    content: ""; position: absolute; left: 12px; right: 12px; bottom: -20px; height: 3px;
    border-radius: 999px; background: var(--bc-turquoise);
}
.bc-main-nav__item--parent { padding-right: 29px; }
.bc-main-nav__item--parent::after {
    content: ""; position: absolute; right: 11px; top: 50%; width: 7px; height: 7px; margin-top: -5px;
    border-right: 1.7px solid currentColor; border-bottom: 1.7px solid currentColor; transform: rotate(45deg);
    opacity: .72; transition: transform var(--bc-transition), margin var(--bc-transition);
}
.bc-main-nav__item--parent.is-active::after { transform: rotate(225deg); margin-top: -1px; }
.bc-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 15px; flex: 0 0 auto; white-space: nowrap; }
.bc-mobile-user { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--bc-border); border-radius: 12px; color: var(--bc-primary); background: #fff; box-shadow: 0 3px 10px rgba(11,45,87,.04); }
.bc-mobile-user:hover,
.bc-mobile-user:focus-visible { border-color: #BFE8EC; color: #109CAC; background: #F7FCFD; outline: none; }
.bc-mobile-user .bc-icon { width: 21px; height: 21px; }
.bc-header-actions__client {
    display: inline-flex; align-items: center; min-height: 44px; padding: 0 7px; color: #35516C; border-radius: 9px;
    font-size: 14px; font-weight: 680; transition: color var(--bc-transition), background-color var(--bc-transition);
}
.bc-header-actions__client:hover,
.bc-header-actions__client:focus-visible { color: var(--bc-primary); background: var(--bc-bg); outline: none; }
.bc-button {
    display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px;
    border: 1px solid transparent; border-radius: var(--bc-radius-button); font-size: 14px; font-weight: 780; line-height: 1;
    transition: transform var(--bc-transition), box-shadow var(--bc-transition), background-color var(--bc-transition);
}
.bc-button--primary { color: #fff; background: linear-gradient(135deg, var(--bc-turquoise), #18A8B8); box-shadow: 0 9px 22px rgba(31,180,195,.2); }
.bc-button--primary:hover,
.bc-button--primary:focus-visible { background: linear-gradient(135deg, #1AA9B8, #159AA9); box-shadow: 0 12px 28px rgba(31,180,195,.25); transform: translateY(-1px); outline: none; }
.bc-mobile-trigger { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--bc-border); border-radius: 12px; color: var(--bc-primary); background: #fff; cursor: pointer; }
.bc-mobile-trigger:hover,
.bc-mobile-trigger:focus-visible { background: var(--bc-bg); outline: none; }

/* Mega menu */
.bc-mega-layer { position: absolute; left: 0; right: 0; top: 100%; z-index: 999; pointer-events: none; }
.bc-mega-layer.is-open { pointer-events: auto; }
.bc-mega[hidden] { display: none !important; }
.bc-mega { padding-top: 8px; }
.bc-mega__surface {
    background: rgba(255,255,255,.995); border: 1px solid #E4EBF2; border-radius: 18px;
    box-shadow: 0 24px 64px rgba(11,45,87,.14), 0 6px 18px rgba(11,45,87,.05);
    overflow: hidden; animation: bcMegaIn 140ms ease both;
}
@keyframes bcMegaIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.bc-mega-products__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) 1.12fr; gap: 0; padding: 18px 20px; align-items: stretch; }
.bc-mega-product-group { padding: 8px 18px 8px 16px; border-right: 1px solid #EDF2F6; }
.bc-mega-product-group:first-child { padding-left: 8px; }
.bc-mega-product-group__heading { display: flex; align-items: flex-start; gap: 11px; min-height: 64px; padding: 2px 4px 12px; border-bottom: 1px solid #E7EEF4; cursor: default; user-select: none; }
.bc-mega-section-label { display: block; color: #119BAB; font-size: 11px; line-height: 1.2; font-weight: 850; letter-spacing: .065em; text-transform: uppercase; }
.bc-mega-product-group__heading small { display: block; margin-top: 6px; color: var(--bc-muted); font-size: 12px; line-height: 1.42; }
.bc-icon-tile { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex: 0 0 38px; color: #0E69A8; border-radius: 10px; background: #F1F8FC; }
.bc-icon-tile .bc-icon { width: 23px; height: 23px; }
.bc-icon-tile--brand { background: #F7F9FB; }
.bc-wordpress-mark { display: inline-block; width: 27px; height: 27px; flex: 0 0 auto; background-color: #0E5E9B; -webkit-mask: url('../images/wordpress-w-mark.png') center / contain no-repeat; mask: url('../images/wordpress-w-mark.png') center / contain no-repeat; }
.bc-wordpress-mark--small { width: 21px; height: 21px; margin-top: 0; }
.bc-wordpress-mark--mobile { width: 28px; height: 28px; background-color: #109CAC; }
.bc-mega-subitem {
    display: grid; grid-template-columns: 24px minmax(0,1fr) 14px; gap: 9px; align-items: start; margin-top: 7px; padding: 8px 6px;
    border-radius: 10px; color: var(--bc-primary); transition: background var(--bc-transition), transform var(--bc-transition);
}
.bc-mega-subitem > .bc-icon:first-child { width: 20px; height: 20px; margin-top: 1px; color: #0E5D9A; }
.bc-mega-subitem__arrow { width: 14px !important; height: 14px !important; margin-top: 4px !important; color: #7890A5 !important; transition: transform var(--bc-transition); }
.bc-mega-subitem strong { display: block; color: #1A3A58; font-size: 12.8px; line-height: 1.2; }
.bc-mega-subitem small { display: block; margin-top: 3px; color: #6A7F94; font-size: 11.2px; line-height: 1.35; }
.bc-mega-subitem:hover,
.bc-mega-subitem:focus-visible { background: #F5F9FC; transform: translateY(-1px); outline: none; }
.bc-mega-subitem:hover .bc-mega-subitem__arrow,
.bc-mega-subitem:focus-visible .bc-mega-subitem__arrow { transform: translateX(2px); }
.bc-mega-feature {
    display: flex; flex-direction: column; justify-content: flex-end; min-height: 278px; margin-left: 16px; padding: 18px;
    color: var(--bc-deep); border: 1px solid rgba(31,180,195,.13); border-radius: 16px;
    background: radial-gradient(circle at 80% 12%, rgba(64,203,210,.22), transparent 34%), linear-gradient(150deg, #F3FCFD, #DDF7F9);
    transition: transform var(--bc-transition), box-shadow var(--bc-transition);
}
.bc-mega-feature:hover,
.bc-mega-feature:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(31,180,195,.14); outline: none; }
.bc-mega-feature__mini {
    position: relative; display: block; width: 100%; height: 106px; margin-bottom: 16px; overflow: hidden;
    border: 1px solid rgba(18,63,115,.13); border-radius: 12px; background: #fff; box-shadow: 0 12px 28px rgba(11,45,87,.10);
}
.bc-mini-panel__bar { display: flex; gap: 4px; height: 24px; padding: 8px; background: #F7FAFD; border-bottom: 1px solid #EDF2F6; }
.bc-mini-panel__bar span { width: 5px; height: 5px; border-radius: 50%; background: #BFD6E5; }
.bc-mini-panel__layout { display: grid; grid-template-columns: 26px repeat(3, 1fr); gap: 8px; padding: 12px 10px 8px; }
.bc-mini-panel__layout i { height: 42px; border-radius: 7px; background: var(--bc-deep); }
.bc-mini-panel__layout b { display: block; height: 42px; border: 1px solid #E6EDF3; border-radius: 7px; background: linear-gradient(#F6FAFD, #fff); }
.bc-mini-panel__chart { display: block; height: 35px; margin: 0 10px 10px 44px; border: 1px solid #E6EDF3; border-radius: 7px; position: relative; overflow: hidden; }
.bc-mini-panel__chart i { position: absolute; left: 8%; right: 8%; top: 17px; height: 2px; background: linear-gradient(90deg, transparent 0 5%, var(--bc-turquoise) 6% 82%, transparent 83%); transform: skewY(-8deg); }
.bc-mega-feature__eyebrow { display: block; color: #109CAC; font-size: 10.5px; font-weight: 850; letter-spacing: .08em; }
.bc-mega-feature > strong { margin-top: 6px; font-size: 18px; line-height: 1.2; letter-spacing: -.02em; }
.bc-mega-feature > small { margin-top: 7px; color: #5F7489; font-size: 12px; line-height: 1.45; }
.bc-mega-feature__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 13px; color: #fff; background: var(--bc-turquoise); border-radius: 10px; padding: 11px 13px; font-size: 12.5px; font-weight: 800; }
.bc-mega-feature__cta .bc-icon { width: 18px; height: 18px; margin-left: auto; }

.bc-mega__surface--compact { max-width: 980px; margin-inline: auto; }
.bc-mega-compact__grid { display: grid; grid-template-columns: .85fr 1.45fr; gap: 28px; padding: 26px 28px; }
.bc-mega-compact__intro { display: flex; align-items: flex-start; gap: 15px; padding: 8px 10px 8px 4px; }
.bc-icon-tile--large { width: 46px; height: 46px; flex-basis: 46px; }
.bc-mega-compact__intro strong { display: block; margin-top: 6px; color: var(--bc-deep); font-size: 19px; line-height: 1.25; }
.bc-mega-compact__intro small { display: block; margin-top: 7px; color: var(--bc-muted); font-size: 12.5px; line-height: 1.5; }
.bc-mega-compact__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bc-mega-compact__links--resources { gap: 10px; }
.bc-mega-compact__links .bc-mega-subitem { margin-top: 0; padding: 12px; border: 1px solid #EDF2F6; }

/* Mobile drawer */
.bc-mobile-menu { display: none; position: fixed; inset: 0; z-index: 99999; pointer-events: none; }
.bc-mobile-menu__overlay { position: absolute; inset: 0; border: 0; background: rgba(5,25,46,.72); opacity: 0; transition: opacity 200ms ease; }
.bc-mobile-menu__panel {
    position: absolute; top: 0; right: 0; width: min(92vw, 460px); height: 100%; background: #fff; transform: translateX(102%);
    box-shadow: -20px 0 60px rgba(5,25,46,.16); transition: transform 240ms cubic-bezier(.22,.61,.36,1); display: flex; flex-direction: column;
}
.bc-mobile-menu.is-open { pointer-events: auto; }
.bc-mobile-menu.is-open .bc-mobile-menu__overlay { opacity: 1; }
.bc-mobile-menu.is-open .bc-mobile-menu__panel { transform: translateX(0); }
.bc-mobile-menu__top { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 22px; border-bottom: 1px solid #E7EDF3; }
.bc-mobile-menu__brand { width: 210px; display: inline-flex; }
.bc-mobile-menu__brand img { width: 100%; height: auto; display: block; }
.bc-mobile-menu__close { width: 48px; height: 48px; border: 0; border-radius: 13px; background: #F4F7FA; color: #52667A; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.bc-mobile-menu__close:hover,
.bc-mobile-menu__close:focus-visible { background: #EAF1F6; outline: none; }
.bc-mobile-menu__scroll { overflow-y: auto; padding: 18px 20px 30px; overscroll-behavior: contain; }
.bc-mobile-accordion { border-bottom: 1px solid #E7EDF3; }
.bc-mobile-accordion__trigger { width: 100%; min-height: 58px; font-size: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 0; background: transparent; color: #163653; padding: 0 4px; cursor: pointer; text-align: left; }
.bc-mobile-accordion__title { display: flex; align-items: center; gap: 13px; font-size: 16px; }
.bc-mobile-accordion__title > .bc-icon { color: #0D6DAA; }
.bc-mobile-accordion__chevron { width: 18px; height: 18px; transition: transform var(--bc-transition); }
.bc-mobile-accordion.is-open .bc-mobile-accordion__chevron { transform: rotate(180deg); }
.bc-mobile-accordion__panel { padding: 0 0 14px; }
.bc-mobile-card { min-height: 76px; display: grid; grid-template-columns: 30px minmax(0,1fr) 20px; align-items: center; gap: 13px; margin: 9px 0; padding: 12px 14px; border: 1px solid #E2EAF2; border-radius: 14px; background: #fff; box-shadow: 0 3px 10px rgba(11,45,87,.025); }
.bc-mobile-card > .bc-icon:first-child { color: #0E5E9B; }
.bc-mobile-card > .bc-icon:last-child { width: 18px; height: 18px; color: #6D8092; }
.bc-mobile-card strong { display: block; color: #173958; font-size: 16px; line-height: 1.2; }
.bc-mobile-card small { display: block; margin-top: 4px; color: #697E91; font-size: 13px; line-height: 1.3; }
.bc-mobile-card:hover,
.bc-mobile-card:focus-visible { border-color: #C9E7EA; background: #F9FCFD; outline: none; }
.bc-mobile-simple { display: flex; min-height: 50px; align-items: center; padding: 0 10px; border-radius: 10px; color: #34536D; font-size: 16px; font-weight: 650; }
.bc-mobile-simple--icon { display: grid; grid-template-columns: 24px minmax(0,1fr) 17px; gap: 12px; }
.bc-mobile-simple--icon > .bc-icon:first-child { width: 21px; height: 21px; color: #109CAC; }
.bc-mobile-simple--icon > .bc-icon:last-child { width: 16px; height: 16px; color: #72879A; justify-self: end; }
.bc-mobile-simple:hover,
.bc-mobile-simple:focus-visible { background: #F4F8FC; color: var(--bc-primary); outline: none; }
.bc-mobile-menu__primary { padding: 4px 0 10px; }
.bc-mobile-menu__primary a { min-height: 58px; display: grid; font-size: 16px; grid-template-columns: 26px minmax(0,1fr) 18px; gap: 13px; align-items: center; border-bottom: 1px solid #E7EDF3; color: #173958; font-size: 16px; font-weight: 650; }
.bc-mobile-menu__primary a > .bc-icon:first-child { color: #0E5E9B; }
.bc-mobile-menu__primary a > .bc-icon:last-child { width: 17px; height: 17px; color: #6D8092; }
.bc-mobile-migration { display: block; position: relative; overflow: hidden; margin-top: 18px; padding: 19px; border: 1px solid #BFE8EC; border-radius: 15px; background: radial-gradient(circle at 92% 22%, rgba(64,203,210,.23), transparent 31%), linear-gradient(145deg, #F7FDFE, #E7FAFB); }
.bc-mobile-migration__eyebrow { display: block; color: #139EAD; font-size: 10.5px; font-weight: 850; letter-spacing: .07em; }
.bc-mobile-migration strong { display: block; max-width: 76%; margin-top: 7px; color: var(--bc-deep); font-size: 19px; line-height: 1.2; }
.bc-mobile-migration small { display: block; max-width: 80%; margin-top: 7px; color: #657A8D; font-size: 12.5px; line-height: 1.45; }
.bc-mobile-migration > span:last-child { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: #0B7891; font-size: 12.5px; font-weight: 800; }
.bc-mobile-migration > span:last-child .bc-icon { width: 17px; height: 17px; }
.bc-mobile-menu__cta { width: 100%; margin-top: 15px; }

.bc-review-stage { flex: 1 0 auto; min-height: 0; background: #fff; }
.bc-review-stage__inner { min-height: 1px; }

@media (max-width: 1280px) {
    .bc-shell { width: min(calc(100% - 36px), var(--bc-shell)); }
    .bc-site-header__inner { gap: 26px; }
    .bc-brand, .bc-brand img { width: 205px; }
    .bc-main-nav { gap: 4px; }
    .bc-main-nav__item { padding-left: 9px; padding-right: 9px; font-size: 13.5px; }
    .bc-main-nav__item--parent { padding-right: 26px; }
    .bc-header-actions { gap: 10px; }
    .bc-button { padding-inline: 18px; }
    .bc-mega-products__grid { padding: 20px; }
    .bc-mega-product-group { padding-inline: 14px; }
    .bc-mega-feature { margin-left: 12px; padding: 18px; }
}

@media (max-width: 1080px) {
    :root { --bc-header-height: 74px; --bc-promo-height: 28px; }
    .bc-main-nav, .bc-header-actions__client, .bc-header-actions__cta, .bc-mega-layer { display: none !important; }
    .bc-mobile-user { display: inline-flex; }
    .bc-site-header__inner { justify-content: space-between; gap: 18px; }
    .bc-brand, .bc-brand img { width: 200px; }
    .bc-header-actions { margin-left: auto; gap: 10px; }
    .bc-mobile-trigger { display: inline-flex; }
    .bc-mobile-menu { display: block; }
    .bc-promo-bar__inner { gap: 10px; font-size: 11.5px; }
    .bc-promo-bar__inner a { min-height: 24px; padding-inline: 9px; }
}

@media (max-width: 782px) {
    .admin-bar .bc-global-header { top: 46px; }
}

@media (max-width: 620px) {
    .bc-shell { width: min(calc(100% - 26px), var(--bc-shell)); }
    .bc-promo-bar__inner { justify-content: center; gap: 8px; }
    .bc-promo-bar__inner strong { font-size: 10.8px; }
    .bc-promo-bar__inner > span:not(.bc-promo-bar__divider) { font-size: 10.8px; }
    .bc-promo-bar__divider { height: 13px; }
    .bc-promo-bar__inner a { font-size: 10.8px; }
    .bc-brand, .bc-brand img { width: 180px; }
}

@media (max-width: 430px) {
    :root { --bc-header-height: 70px; --bc-promo-height: 26px; }
    .bc-shell { width: min(calc(100% - 22px), var(--bc-shell)); }
    .bc-brand, .bc-brand img { width: 166px; }
    .bc-mobile-trigger, .bc-mobile-user { width: 44px; height: 44px; }
    .bc-promo-bar__inner { gap: 6px; white-space: nowrap; }
    .bc-promo-bar__inner strong, .bc-promo-bar__inner > span:not(.bc-promo-bar__divider), .bc-promo-bar__inner a { font-size: 9.8px; }
    .bc-promo-bar__inner a { min-height: 22px; padding-inline: 7px; border-radius: 6px; }
    .bc-mobile-menu__panel { width: 94vw; }
    .bc-mobile-menu__top { min-height: 78px; padding: 14px 16px; }
    .bc-mobile-menu__brand { width: 182px; }
    .bc-mobile-menu__close { width: 44px; height: 44px; }
    .bc-mobile-menu__scroll { padding: 14px 15px 24px; }
    .bc-mobile-card { min-height: 70px; padding: 10px 12px; }
    .bc-mobile-migration strong { max-width: 82%; font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* Mobile tap stability: prevents double-tap zoom on menu controls without disabling pinch zoom. */
@media (max-width: 1080px) {
    .bc-mobile-trigger, .bc-mobile-user, .bc-mobile-menu button, .bc-mobile-menu a, .bc-promo-bar a {
        touch-action: manipulation;
        -webkit-text-size-adjust: 100%;
    }
}


/* Global footer */

.bc-footer {
    position: relative;
    flex: 0 0 auto;
    margin-top: auto;
    overflow: hidden;
    color: #E4EEF6;
    background:
        radial-gradient(circle at 8% 12%, rgba(31,180,195,.16), transparent 25%),
        radial-gradient(circle at 92% 0%, rgba(18,63,115,.34), transparent 34%),
        linear-gradient(148deg, #061A30 0%, #082A4B 54%, #061B31 100%);
    border-top: 1px solid rgba(64,203,210,.22);
}
.bc-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bc-turquoise), var(--bc-cyan), transparent 82%);
    opacity: .9;
}
.bc-footer__watermark {
    position: absolute;
    width: 360px;
    height: 260px;
    left: -80px;
    top: 42px;
    background: url('../images/bahia-cloud-mark.webp') center / contain no-repeat;
    opacity: .035;
    pointer-events: none;
}
.bc-footer__main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(270px,1.08fr) minmax(610px,2.5fr) minmax(270px,1fr);
    gap: 52px;
    padding-top: 62px;
    padding-bottom: 50px;
}
.bc-footer__brand-column > p {
    max-width: 315px;
    margin: 22px 0 0;
    color: #B7C9D8;
    font-size: 15.5px;
    line-height: 1.68;
}
.bc-footer-brand {
    display: inline-flex;
    align-items: center;
    min-height: 62px;
}
.bc-footer-brand__plate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 246px;
    min-height: 62px;
    padding: 10px 14px;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.bc-footer-brand__plate img {
    display: block;
    width: 218px;
    height: auto;
}
.bc-footer-support-card {
    display: grid;
    grid-template-columns: 46px minmax(0,1fr);
    gap: 14px;
    max-width: 315px;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid rgba(129,183,215,.26);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
    transition: border-color var(--bc-transition), background var(--bc-transition), transform var(--bc-transition);
}
.bc-footer-support-card:hover,
.bc-footer-support-card:focus-visible {
    border-color: rgba(64,203,210,.6);
    background: rgba(31,180,195,.08);
    transform: translateY(-1px);
    outline: none;
}
.bc-footer-support-card__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--bc-cyan);
    background: rgba(64,203,210,.10);
}
.bc-footer-support-card__icon .bc-icon { width: 25px; height: 25px; }
.bc-footer-support-card strong { display: block; color: #fff; font-size: 15px; }
.bc-footer-support-card small { display: block; margin-top: 5px; color: #B7C9D8; font-size: 13.5px; line-height: 1.45; }
.bc-footer-support-card b { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; color: var(--bc-cyan); font-size: 13.5px; }
.bc-footer-support-card b .bc-icon { width: 16px; height: 16px; }

.bc-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 32px;
}
.bc-footer-group { min-width: 0; }
.bc-footer-group summary {
    list-style: none;
    cursor: default;
    color: var(--bc-cyan);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: .055em;
    text-transform: uppercase;
}
.bc-footer-group summary::-webkit-details-marker { display: none; }
.bc-footer-group summary .bc-icon { display: none; }
.bc-footer-group__links { display: grid; gap: 12px; margin-top: 20px; }
.bc-footer-group__links a {
    color: #DDE8F1;
    font-size: 14.8px;
    line-height: 1.42;
    transition: color var(--bc-transition), transform var(--bc-transition);
}
.bc-footer-group__links a:hover,
.bc-footer-group__links a:focus-visible {
    color: #fff;
    transform: translateX(3px);
    outline: none;
}

.bc-footer-client-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(64,203,210,.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(64,203,210,.14), transparent 36%),
        linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    box-shadow: 0 18px 48px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.04);
}
.bc-footer-client-card__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 13px;
    color: var(--bc-cyan);
    background: rgba(64,203,210,.11);
}
.bc-footer-client-card__icon .bc-icon { width: 25px; height: 25px; }
.bc-footer__eyebrow {
    display: block;
    color: var(--bc-cyan);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .07em;
}
.bc-footer-client-card > strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 22px;
    line-height: 1.22;
    letter-spacing: -.025em;
}
.bc-footer-client-card > p {
    margin: 12px 0 0;
    color: #B6C9D8;
    font-size: 14.5px;
    line-height: 1.62;
}
.bc-footer-client-card__primary,
.bc-footer-client-card__secondary {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 780;
}
.bc-footer-client-card__primary {
    gap: 10px;
    margin-top: 20px;
    padding: 0 15px;
    color: #062A3B;
    background: linear-gradient(135deg, #4BD4DB, #20B4C4);
    box-shadow: 0 10px 26px rgba(31,180,195,.18);
}
.bc-footer-client-card__primary .bc-icon { width: 18px; height: 18px; }
.bc-footer-client-card__primary:hover,
.bc-footer-client-card__primary:focus-visible { transform: translateY(-1px); outline: none; }
.bc-footer-client-card__secondary {
    margin-top: 9px;
    color: #E9F4F8;
    border: 1px solid rgba(180,220,235,.20);
    background: rgba(255,255,255,.035);
}
.bc-footer-client-card__secondary:hover,
.bc-footer-client-card__secondary:focus-visible { border-color: rgba(64,203,210,.45); background: rgba(64,203,210,.06); outline: none; }

.bc-footer__trustbar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 0;
    padding-top: 27px;
    padding-bottom: 27px;
    border-top: 1px solid rgba(176,210,230,.15);
    border-bottom: 1px solid rgba(176,210,230,.15);
}
.bc-footer__trustbar > span {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr);
    grid-template-rows: auto auto;
    column-gap: 13px;
    padding: 0 26px;
    border-right: 1px solid rgba(176,210,230,.14);
}
.bc-footer__trustbar > span:first-child { padding-left: 0; }
.bc-footer__trustbar > span:last-child { padding-right: 0; border-right: 0; }
.bc-footer__trustbar .bc-icon {
    grid-row: 1 / 3;
    align-self: center;
    width: 31px;
    height: 31px;
    color: var(--bc-cyan);
}
.bc-footer__trustbar b { color: #F7FBFD; font-size: 13.7px; line-height: 1.3; }
.bc-footer__trustbar small { margin-top: 4px; color: #9EB5C6; font-size: 11.8px; line-height: 1.35; }

.bc-footer__bottom {
    position: relative;
    z-index: 1;
    min-height: 98px;
    display: grid;
    grid-template-columns: 1.1fr 1.45fr 1fr;
    align-items: center;
    gap: 26px;
    color: #B2C5D4;
    font-size: 13px;
}
.bc-footer__copyright { line-height: 1.45; }
.bc-footer__location {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    color: #C5D4DF;
}
.bc-footer__location .bc-icon { width: 18px; height: 18px; color: var(--bc-cyan); }
.bc-footer__payment-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.bc-footer__payment-label {
    color: #91AABE;
    font-size: 12.5px;
    white-space: nowrap;
}
.bc-footer__payment-brands { display: inline-flex; align-items: center; gap: 8px; }
.bc-payment-badge {
    position: relative;
    width: 70px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px 8px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,.12);
}
.bc-payment-badge img {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.bc-payment-badge--mastercard img { max-width: 48px; }
.bc-payment-badge--amex img { max-width: 34px; max-height: 34px; }
.bc-payment-fallback {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #133D73;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: -.02em;
}
.bc-payment-badge--mastercard .bc-payment-fallback { font-size: 9px; color: #222; }
.bc-payment-badge--amex .bc-payment-fallback { font-size: 11px; color: #1272CE; }
.bc-payment-badge:not(.is-error) .bc-payment-fallback { opacity: 0; }
.bc-payment-badge.is-error img { display: none; }
.bc-payment-badge.is-error .bc-payment-fallback { opacity: 1; }

@media (max-width: 1240px) {
    .bc-footer__main { grid-template-columns: minmax(240px,.9fr) minmax(540px,2fr); gap: 42px; }
    .bc-footer-client-card { grid-column: 1 / -1; display: grid; grid-template-columns: 46px 1fr auto auto; align-items: center; gap: 14px 18px; padding: 20px; }
    .bc-footer-client-card__icon { margin: 0; grid-row: 1 / 3; }
    .bc-footer-client-card .bc-footer__eyebrow { align-self: end; }
    .bc-footer-client-card > strong { margin-top: 2px; }
    .bc-footer-client-card > p { grid-column: 2; margin-top: 3px; }
    .bc-footer-client-card__primary { grid-column: 3; grid-row: 1 / 3; min-width: 180px; margin: 0; }
    .bc-footer-client-card__secondary { grid-column: 4; grid-row: 1 / 3; min-width: 140px; margin: 0; }
}

@media (max-width: 900px) {
    .bc-footer__main { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; padding-bottom: 38px; }
    .bc-footer__brand-column { display: grid; grid-template-columns: 1fr auto; gap: 16px 24px; align-items: start; }
    .bc-footer__brand-column > p { grid-column: 1; margin-top: 6px; }
    .bc-footer-support-card { grid-column: 2; grid-row: 1 / 3; margin-top: 0; min-width: 290px; }
    .bc-footer__nav { gap: 24px; }
    .bc-footer-client-card { grid-template-columns: 46px 1fr; }
    .bc-footer-client-card__primary,
    .bc-footer-client-card__secondary { grid-column: 2; grid-row: auto; width: 100%; margin-top: 0; }
    .bc-footer__trustbar { grid-template-columns: repeat(2,minmax(0,1fr)); row-gap: 22px; }
    .bc-footer__trustbar > span { border-right: 0; padding: 0 18px; }
    .bc-footer__trustbar > span:nth-child(odd) { padding-left: 0; border-right: 1px solid rgba(176,210,230,.14); }
    .bc-footer__bottom { grid-template-columns: 1fr 1fr; padding: 22px 0; }
    .bc-footer__payment-area { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; }
    .bc-footer__location { justify-content: flex-end; }
}

@media (max-width: 620px) {
    .bc-footer__watermark { width: 250px; height: 180px; left: -70px; top: 25px; }
    .bc-footer__main { gap: 25px; padding-top: 38px; }
    .bc-footer__brand-column { display: block; }
    .bc-footer-brand__plate { width: 235px; min-height: 60px; padding: 9px 13px; }
    .bc-footer-brand__plate img { width: 208px; }
    .bc-footer__brand-column > p { max-width: 100%; margin-top: 16px; font-size: 15px; }
    .bc-footer-support-card { max-width: 100%; min-width: 0; margin-top: 20px; }
    .bc-footer__nav { display: block; border-top: 1px solid rgba(176,210,230,.14); }
    .bc-footer-group { border-bottom: 1px solid rgba(176,210,230,.14); }
    .bc-footer-group summary {
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        cursor: pointer;
        color: #F1F7FA;
        font-size: 13.5px;
        touch-action: manipulation;
    }
    .bc-footer-group summary .bc-icon { display: block; width: 18px; height: 18px; color: var(--bc-cyan); transition: transform var(--bc-transition); }
    .bc-footer-group[open] summary .bc-icon { transform: rotate(180deg); }
    .bc-footer-group__links { gap: 0; margin: 0; padding: 0 0 13px; }
    .bc-footer-group__links a {
        min-height: 46px;
        display: flex;
        align-items: center;
        padding: 0 8px;
        border-radius: 8px;
        font-size: 15px;
    }
    .bc-footer-group__links a:hover,
    .bc-footer-group__links a:focus-visible { background: rgba(255,255,255,.045); transform: none; }
    .bc-footer-client-card { display: block; padding: 20px; }
    .bc-footer-client-card__icon { margin-bottom: 14px; }
    .bc-footer-client-card > strong { font-size: 21px; }
    .bc-footer-client-card > p { font-size: 14px; }
    .bc-footer-client-card__primary,
    .bc-footer-client-card__secondary { width: 100%; margin-top: 10px; }
    .bc-footer-client-card__primary { margin-top: 18px; }
    .bc-footer__trustbar { grid-template-columns: 1fr 1fr; gap: 20px 0; padding-top: 24px; padding-bottom: 24px; }
    .bc-footer__trustbar > span { grid-template-columns: 29px minmax(0,1fr); padding: 0 12px; }
    .bc-footer__trustbar .bc-icon { width: 25px; height: 25px; }
    .bc-footer__trustbar b { font-size: 12.8px; }
    .bc-footer__trustbar small { font-size: 10.8px; }
    .bc-footer__bottom { min-height: 0; grid-template-columns: 1fr; gap: 16px; padding-top: 22px; padding-bottom: 26px; font-size: 12.5px; }
    .bc-footer__location { justify-content: flex-start; }
    .bc-footer__payment-area { grid-column: auto; grid-row: auto; justify-content: flex-start; flex-wrap: wrap; gap: 9px 12px; }
    .bc-footer__payment-label { width: 100%; font-size: 12px; }
    .bc-payment-badge { width: 64px; height: 38px; }
}

@media (max-width: 390px) {
    .bc-footer__trustbar { grid-template-columns: 1fr; }
    .bc-footer__trustbar > span,
    .bc-footer__trustbar > span:nth-child(odd) { padding: 0; border-right: 0; }
}
