:root {
    --bgc-blue: #1079a8;
    --bgc-blue-dark: #06445f;
    --bgc-blue-deep: #052f45;
    --bgc-cyan: #66d0f2;
    --bgc-ink: #14242c;
    --bgc-soft: #eef8fc;
    --bgc-font: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body.bgc-site {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--bgc-font);
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 18%, rgba(102, 208, 242, 0.22), transparent 34%),
        linear-gradient(135deg, rgba(6, 44, 66, 0.98), rgba(16, 107, 154, 0.92)),
        #062c42;
}

body.bgc-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

.bgc-hold {
    --bgc-page-pad: clamp(22px, 4vw, 56px);
    min-height: 100vh;
    padding: 0 var(--bgc-page-pad) clamp(22px, 4vw, 56px);
    overflow: hidden;
}

.bgc-site-header {
    position: relative;
    z-index: 50;
    display: grid;
    grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    margin: 0 calc(var(--bgc-page-pad) * -1);
    padding: 22px var(--bgc-page-pad);
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(6, 68, 95, 0.08);
}

.bgc-brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
    text-decoration: none;
}

.bgc-brand img {
    display: block;
    width: clamp(148px, 14vw, 218px);
    height: auto;
}

.bgc-desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2.6vw, 34px);
}

.bgc-desktop-nav a {
    position: relative;
    color: rgba(20, 36, 44, 0.76);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.bgc-desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--bgc-cyan);
    transition: transform 0.18s ease;
}

.bgc-desktop-nav a:hover {
    color: var(--bgc-blue);
}

.bgc-desktop-nav a:hover::after {
    transform: scaleX(1);
}

.bgc-desktop-nav a.is-active {
    color: var(--bgc-blue);
}

.bgc-desktop-nav a.is-active::after {
    transform: scaleX(1);
}

.bgc-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

.bgc-portal-link {
    display: inline-flex;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--bgc-blue);
    box-shadow: 0 10px 26px rgba(6, 68, 95, 0.18);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.18s ease, transform 0.18s ease;
}

.bgc-portal-link:hover {
    background: var(--bgc-cyan);
    transform: translateY(-1px);
}

.bgc-lang-select {
    position: relative;
}

.bgc-lang-trigger,
.bgc-menu-button,
.bgc-drawer-close {
    appearance: none;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.bgc-lang-trigger {
    display: inline-flex;
    min-width: 96px;
    height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(20, 36, 44, 0.12);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(6, 68, 95, 0.08);
    color: var(--bgc-ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bgc-flag {
    position: relative;
    display: inline-block;
    flex: 0 0 22px;
    width: 22px;
    height: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 18, 28, 0.18);
}

.bgc-flag-fr {
    background: linear-gradient(90deg, #153f8e 0 33.333%, #ffffff 33.333% 66.666%, #e63b48 66.666% 100%);
}

.bgc-flag-nl {
    background: linear-gradient(90deg, #1f1f23 0 33.333%, #f6d64a 33.333% 66.666%, #df3345 66.666% 100%);
}

.bgc-flag-en {
    background:
        linear-gradient(33deg, transparent 48%, #c8102e 48% 52%, transparent 52%),
        linear-gradient(-33deg, transparent 48%, #c8102e 48% 52%, transparent 52%),
        linear-gradient(90deg, transparent 44%, #c8102e 44% 56%, transparent 56%),
        linear-gradient(0deg, transparent 43%, #c8102e 43% 57%, transparent 57%),
        linear-gradient(33deg, transparent 45%, #ffffff 45% 55%, transparent 55%),
        linear-gradient(-33deg, transparent 45%, #ffffff 45% 55%, transparent 55%),
        linear-gradient(90deg, transparent 37%, #ffffff 37% 63%, transparent 63%),
        linear-gradient(0deg, transparent 35%, #ffffff 35% 65%, transparent 65%),
        #012169;
}

.bgc-lang-chevron {
    width: 6px;
    height: 6px;
    margin: -3px 0 0 1px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.bgc-lang-select.is-open .bgc-lang-chevron {
    margin-top: 3px;
    transform: rotate(225deg);
}

.bgc-lang-trigger:hover,
.bgc-lang-select.is-open .bgc-lang-trigger {
    background: var(--bgc-soft);
    color: var(--bgc-blue);
}

.bgc-lang-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: 230px;
    padding: 8px;
    border-radius: 20px;
    background: #27262e;
    box-shadow: 0 22px 70px rgba(0, 18, 28, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.bgc-lang-select.is-open .bgc-lang-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.bgc-lang-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 15px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    text-decoration: none;
}

.bgc-lang-name {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.bgc-lang-menu a:hover,
.bgc-lang-menu a.is-active {
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.bgc-lang-menu strong {
    font-size: 11px;
    letter-spacing: 0.14em;
}

.bgc-menu-button {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    border-radius: 15px;
    background: #f1f9fc;
    box-shadow: 0 12px 34px rgba(5, 61, 92, 0.18);
    color: var(--bgc-blue);
}

.bgc-menu-button span {
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background: currentColor;
}

.bgc-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(5, 47, 69, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.bgc-menu-open .bgc-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.bgc-mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    width: min(352px, calc(100vw - 42px));
    max-width: calc(100vw - 42px);
    overflow: auto;
    transform: translateX(104%);
    border-radius: 20px 0 0 20px;
    background: #ffffff;
    box-shadow: -26px 0 70px rgba(0, 28, 42, 0.20);
    color: var(--bgc-ink);
    transition: transform 0.26s ease;
}

.bgc-menu-open .bgc-mobile-drawer {
    transform: translateX(0);
}

.bgc-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 22px 14px;
}

.bgc-drawer-head img {
    display: block;
    width: min(164px, 58%);
    height: auto;
}

.bgc-drawer-close {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: #f1f7fa;
    color: rgba(20, 36, 44, 0.76);
    font-size: 30px;
    line-height: 1;
}

.bgc-drawer-nav {
    display: grid;
    padding: 4px 22px 0;
}

.bgc-drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 49px;
    border-bottom: 1px solid rgba(20, 36, 44, 0.08);
    color: var(--bgc-ink);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
}

.bgc-drawer-nav a.is-active {
    color: var(--bgc-blue);
}

.bgc-drawer-nav strong {
    font-size: 22px;
}

.bgc-drawer-languages {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    gap: 14px;
    padding: 16px 22px 26px;
}

@media (max-height: 560px) {
    .bgc-drawer-languages {
        position: static;
        margin-top: 16px;
    }
}

.bgc-drawer-languages a {
    display: inline-flex;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(20, 36, 44, 0.10);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(6, 68, 95, 0.06);
    line-height: 1;
    text-decoration: none;
}

.bgc-drawer-languages .bgc-flag {
    flex-basis: 25px;
    width: 25px;
    height: 17px;
}

.bgc-drawer-languages a.is-active {
    border-color: var(--bgc-cyan);
    background: var(--bgc-soft);
    box-shadow: 0 0 0 3px rgba(16, 121, 168, 0.12), 0 10px 28px rgba(6, 68, 95, 0.08);
}

.bgc-drawer-cta {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    margin: 10px 22px 0;
    padding: 0 10px 0 16px;
    border: 1px solid rgba(16, 121, 168, 0.18);
    border-radius: 12px;
    background: #edf7fb;
    box-shadow: 0 8px 22px rgba(6, 68, 95, 0.08);
    color: var(--bgc-blue);
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.bgc-drawer-cta strong {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(6, 68, 95, 0.08);
    font-size: 16px;
}

.bgc-drawer-cta:hover,
.bgc-drawer-cta:focus-visible {
    border-color: rgba(16, 121, 168, 0.34);
    background: #e4f3f9;
    box-shadow: 0 10px 26px rgba(6, 68, 95, 0.12);
}

.bgc-hold-panel {
    width: min(720px, 100%);
    max-width: 100%;
    min-width: 0;
    padding: clamp(34px, 4.2vw, 62px) 0 clamp(24px, 3.8vw, 44px);
}

.bgc-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    color: var(--bgc-cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.bgc-kicker::before {
    content: "";
    width: 38px;
    height: 2px;
    background: currentColor;
}

.bgc-hold h1 {
    max-width: 680px;
    margin: 0;
    font-family: var(--bgc-font);
    font-size: 46px;
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: normal;
}

.bgc-hold-lead {
    max-width: 560px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.48;
}

.bgc-hold address {
    margin-top: 22px;
    border-left: 2px solid var(--bgc-cyan);
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-style: normal;
    line-height: 1.48;
}

.bgc-hold address a {
    text-decoration: none;
    font-weight: 800;
}

.bgc-footer {
    margin: clamp(14px, 3vw, 34px) calc(var(--bgc-page-pad) * -1) 0;
    padding: clamp(22px, 3vw, 42px) var(--bgc-page-pad) clamp(24px, 3vw, 42px);
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.055), transparent 18%),
        radial-gradient(circle at 16% 0%, rgba(102, 208, 242, 0.10), transparent 24%),
        linear-gradient(135deg, rgba(5, 47, 69, 0.95), rgba(3, 34, 50, 0.99));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bgc-footer-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
    gap: clamp(24px, 4vw, 52px);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.bgc-footer-inner::after {
    content: "";
    display: none;
    pointer-events: none;
}

.bgc-footer-inner::before {
    content: "";
    display: none;
    pointer-events: none;
}

.bgc-footer-intro,
.bgc-footer-form,
.bgc-footer-bottom {
    position: relative;
    z-index: 1;
}

.bgc-footer-kicker,
.bgc-socials > span,
.bgc-contact-list h3,
.bgc-footer-form h3 {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.bgc-footer-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--bgc-cyan);
}

.bgc-footer-kicker::before {
    content: "";
    width: 38px;
    height: 2px;
    background: currentColor;
}

.bgc-footer h2 {
    max-width: 560px;
    margin: 10px 0 0;
    font-family: var(--bgc-font);
    font-size: 34px;
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: 0;
    color: #ffffff;
}

.bgc-footer-intro > p:not(.bgc-footer-kicker) {
    max-width: 560px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.48;
}

.bgc-socials {
    margin-top: 22px;
}

.bgc-socials div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.bgc-socials a {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(102, 208, 242, 0.18);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
}

.bgc-socials svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bgc-socials svg path {
    fill: none;
}

.bgc-contact-list {
    margin-top: 32px;
}

.bgc-contact-list h3,
.bgc-footer-form h3 {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.bgc-contact-cards {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
}

.bgc-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 10px;
    min-height: 52px;
    align-items: center;
    border: 1px solid rgba(102, 208, 242, 0.20);
    border-radius: 15px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.075);
    padding: 7px 7px 7px 17px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.28;
}

.bgc-contact-card-static {
    grid-template-columns: minmax(0, 1fr);
}

.bgc-contact-card span,
.bgc-contact-card a {
    min-width: 0;
    overflow-wrap: anywhere;
}

.bgc-contact-list a {
    color: inherit;
    text-decoration: none;
}

.bgc-contact-card button {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 1px solid rgba(102, 208, 242, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.065);
    color: var(--bgc-cyan);
    cursor: pointer;
    font: inherit;
    font-size: 0;
}

.bgc-contact-card button::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 3px;
    box-shadow: 5px -5px 0 -2px rgba(3, 34, 50, 0.98), 5px -5px 0 0 currentColor;
}

.bgc-contact-card button.is-copied::before {
    width: 15px;
    height: 8px;
    border-top: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    transform: rotate(-45deg);
}

.bgc-footer-form form {
    display: grid;
    gap: 11px;
    margin-top: 20px;
}

.bgc-footer-form input,
.bgc-footer-form select,
.bgc-footer-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    outline: 0;
}

.bgc-footer-form input,
.bgc-footer-form select {
    height: 54px;
    padding: 0 17px;
}

.bgc-footer-form textarea {
    min-height: 100px;
    resize: vertical;
    padding: 16px 17px;
}

.bgc-footer-form input::placeholder,
.bgc-footer-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.bgc-footer-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.70) 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.70) 50%, transparent 50%);
    background-position:
        calc(100% - 23px) 25px,
        calc(100% - 17px) 25px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.bgc-footer-form option {
    color: var(--bgc-ink);
}

.bgc-consent {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.45;
}

.bgc-consent input {
    width: 24px;
    height: 24px;
    margin: 0;
    border-radius: 8px;
}

.bgc-submit {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    margin-top: 3px;
    padding: 0 22px;
    border: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, #66d0f2, #1079a8);
    box-shadow: 0 20px 50px rgba(16, 121, 168, 0.32);
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bgc-submit strong {
    font-size: 21px;
    line-height: 1;
}

.bgc-footer-bottom {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    gap: 13px;
    margin-top: 2px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.bgc-footer-bottom img {
    display: block;
    width: min(160px, 52vw);
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.bgc-footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.bgc-footer-bottom a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.bgc-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
}

.bgc-home-page {
    background:
        linear-gradient(180deg, #f8fbfd 0%, #ffffff 46%, #eef7fb 100%);
    color: var(--bgc-ink);
}

.bgc-home-page .bgc-kicker,
.bgc-home-page .bgc-section-label {
    color: var(--bgc-blue);
}

.bgc-home-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
    gap: clamp(26px, 5vw, 76px);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 0 34px;
}

.bgc-home-copy h1,
.bgc-home-section h2 {
    margin: 0;
    font-family: var(--bgc-font);
    font-weight: 850;
    letter-spacing: 0;
}

.bgc-home-copy h1 {
    max-width: 650px;
    color: #102834;
    font-size: 50px;
    line-height: 1.04;
}

.bgc-home-lead {
    max-width: 620px;
    margin: 20px 0 0;
    color: rgba(20, 36, 44, 0.72);
    font-size: 17px;
    line-height: 1.58;
}

.bgc-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.bgc-home-page .bgc-seo-secondary {
    border-color: rgba(16, 121, 168, 0.18);
    background: #ffffff;
    color: var(--bgc-blue-dark);
    box-shadow: 0 12px 30px rgba(6, 68, 95, 0.08);
}

.bgc-home-visual {
    min-width: 0;
}

.bgc-home-visual-stage {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(16, 121, 168, 0.12);
    border-radius: 24px;
    background:
        linear-gradient(156deg, rgba(255, 255, 255, 0.98) 0%, rgba(235, 243, 245, 0.94) 58%, rgba(216, 232, 237, 0.92) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 24px 70px rgba(28, 57, 68, 0.13);
    cursor: grab;
    isolation: isolate;
    touch-action: pan-y;
}

.bgc-home-visual-stage.is-dragging {
    cursor: grabbing;
}

.bgc-home-visual-stage canvas {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.bgc-home-gridline {
    position: absolute;
    z-index: 1;
    inset: 0;
    background-image:
        linear-gradient(rgba(48, 94, 108, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48, 94, 108, 0.055) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 82%);
    pointer-events: none;
}

.bgc-hero-loading {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    background: rgba(239, 246, 248, 0.92);
    text-align: center;
    transition: opacity 320ms ease, visibility 320ms ease;
}

.bgc-home-visual-stage.is-ready .bgc-hero-loading {
    visibility: hidden;
    opacity: 0;
}

.bgc-hero-loading > span {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(16, 121, 168, 0.16);
    border-top-color: var(--bgc-blue);
    border-radius: 50%;
    animation: bgc-house-loader 800ms linear infinite;
}

.bgc-hero-loading strong {
    color: #102834;
    font-size: 16px;
    font-weight: 850;
}

.bgc-hero-loading small {
    color: rgba(20, 36, 44, 0.58);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
}

.bgc-hero-reset {
    position: absolute;
    z-index: 5;
    top: 14px;
    right: 14px;
    display: inline-grid;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(26, 65, 78, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 9px 26px rgba(27, 58, 70, 0.1);
    color: #164d63;
    cursor: pointer;
    font: inherit;
    place-items: center;
    transition: background-color 160ms ease, transform 160ms ease;
}

.bgc-hero-reset:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

.bgc-hero-reset:focus-visible {
    outline: 3px solid rgba(21, 133, 173, 0.28);
    outline-offset: 2px;
}

.bgc-hero-reset span {
    font-size: 23px;
    line-height: 1;
}

.bgc-hero-cutaway {
    position: absolute;
    z-index: 5;
    right: 14px;
    bottom: 14px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(26, 65, 78, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 8px 24px rgba(27, 58, 70, 0.08);
    color: #164d63;
    cursor: pointer;
    font: inherit;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.bgc-hero-cutaway:hover,
.bgc-hero-cutaway[aria-pressed="true"] {
    border-color: rgba(21, 133, 173, 0.45);
    background: #167fa5;
    color: #ffffff;
    transform: translateY(-1px);
}

.bgc-hero-cutaway:focus-visible {
    outline: 3px solid rgba(21, 133, 173, 0.28);
    outline-offset: 2px;
}

.bgc-hero-legend {
    position: absolute;
    z-index: 5;
    bottom: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(26, 65, 78, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 24px rgba(27, 58, 70, 0.08);
    color: rgba(16, 40, 52, 0.68);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0;
    pointer-events: none;
    text-transform: uppercase;
}

.bgc-hero-legend span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bgc-hero-legend i {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.bgc-hero-legend .is-frame {
    background: #aa7042;
}

.bgc-hero-legend .is-finish {
    border: 1px solid rgba(39, 58, 65, 0.25);
    background: #e7e5de;
}

.bgc-home-visual > p {
    color: rgba(20, 36, 44, 0.58);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bgc-home-visual > p {
    margin: 14px 0 0;
    text-align: center;
}

@keyframes bgc-house-loader {
    to {
        transform: rotate(360deg);
    }
}

.bgc-home-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1180px;
    margin: 0 auto 46px;
    overflow: hidden;
    border: 1px solid rgba(16, 121, 168, 0.12);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 60px rgba(6, 68, 95, 0.08);
}

.bgc-home-strip div {
    min-height: 92px;
    padding: 18px 20px;
    border-right: 1px solid rgba(16, 121, 168, 0.10);
}

.bgc-home-strip div:last-child {
    border-right: 0;
}

.bgc-home-strip strong,
.bgc-home-strip span {
    display: block;
}

.bgc-home-strip strong {
    color: var(--bgc-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bgc-home-strip span {
    margin-top: 10px;
    color: #102834;
    font-size: 16px;
    font-weight: 850;
}

.bgc-home-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 46px 0;
}

.bgc-home-section-light {
    max-width: none;
    margin: 0 calc(var(--bgc-page-pad) * -1);
    padding: 48px var(--bgc-page-pad);
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(16, 121, 168, 0.08), inset 0 -1px 0 rgba(16, 121, 168, 0.08);
}

.bgc-home-section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 58px);
    align-items: end;
    max-width: 1180px;
    margin: 0 auto 24px;
}

.bgc-home-section-heading {
    min-width: 0;
}

.bgc-home-section-heading .bgc-section-label {
    margin-bottom: 12px;
}

.bgc-home-section-heading h2 {
    max-width: 560px;
    margin: 0;
}

.bgc-home-section h2 {
    color: #102834;
    font-size: 34px;
    line-height: 1.08;
}

.bgc-home-section-head > p,
.bgc-home-method > p {
    margin: 0;
    color: rgba(20, 36, 44, 0.68);
    font-size: 16px;
    line-height: 1.58;
}

.bgc-home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto;
}

.bgc-home-service-grid a {
    min-height: 166px;
    padding: 22px;
    border: 1px solid rgba(16, 121, 168, 0.13);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(238, 248, 252, 0.9), rgba(255, 255, 255, 0.95));
    color: #102834;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(6, 68, 95, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.bgc-home-service-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 121, 168, 0.32);
}

.bgc-home-service-grid span {
    display: block;
    color: var(--bgc-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bgc-home-service-grid strong {
    display: block;
    margin-top: 18px;
    font-size: 21px;
    line-height: 1.2;
}

.bgc-home-method,
.bgc-home-zones {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 58px);
    align-items: center;
    border-top: 1px solid rgba(16, 121, 168, 0.12);
}

.bgc-home-zones {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-bottom: 34px;
}

.bgc-home-zones a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 14px;
    background: var(--bgc-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.bgc-seo-page {
    background:
        linear-gradient(135deg, rgba(6, 44, 66, 0.98), rgba(16, 107, 154, 0.92)),
        #062c42;
}

.bgc-seo-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.48fr);
    gap: clamp(24px, 4vw, 62px);
    align-items: end;
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 0 46px;
}

.bgc-seo-hero-copy h1,
.bgc-seo-intro h2,
.bgc-section-head h2,
.bgc-seo-zones h2 {
    margin: 0;
    font-family: var(--bgc-font);
    font-weight: 850;
    letter-spacing: 0;
}

.bgc-seo-hero-copy h1 {
    max-width: 760px;
    font-size: 48px;
    line-height: 1.04;
}

.bgc-seo-hero-copy > p:not(.bgc-kicker) {
    max-width: 660px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.5;
}

.bgc-seo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.bgc-seo-actions a,
.bgc-home-actions a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.bgc-seo-primary {
    background: linear-gradient(135deg, #66d0f2, #1079a8);
    box-shadow: 0 18px 42px rgba(16, 121, 168, 0.25);
    color: #ffffff;
}

.bgc-seo-secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.88);
}

.bgc-seo-proof {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(102, 208, 242, 0.16);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.035);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 30px 80px rgba(0, 18, 28, 0.20);
}

.bgc-seo-proof span {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.065);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 800;
}

.bgc-seo-proof strong {
    display: block;
    padding: 12px 14px 2px;
    color: var(--bgc-cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.bgc-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    color: var(--bgc-cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.bgc-section-label::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.bgc-seo-intro,
.bgc-seo-zones {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 58px);
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 54px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.bgc-seo-intro h2,
.bgc-section-head h2,
.bgc-seo-zones h2 {
    font-size: 34px;
    line-height: 1.05;
}

.bgc-seo-intro > p,
.bgc-seo-zones > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.62;
}

.bgc-seo-grid,
.bgc-seo-method,
.bgc-seo-commitments,
.bgc-seo-faq {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 54px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.bgc-section-head {
    max-width: 760px;
    margin-bottom: 22px;
}

.bgc-seo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.bgc-seo-grid .bgc-section-head {
    grid-column: 1 / -1;
}

.bgc-seo-card {
    min-height: 182px;
    padding: 20px;
    border: 1px solid rgba(102, 208, 242, 0.15);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.bgc-seo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(102, 208, 242, 0.36);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
}

.bgc-seo-grid h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
}

.bgc-seo-grid p,
.bgc-seo-method li,
.bgc-seo-faq p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    line-height: 1.55;
}

.bgc-seo-grid p {
    margin: 12px 0 0;
}

.bgc-seo-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--bgc-cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.bgc-seo-card a::after {
    content: "→";
    margin-left: 8px;
}

.bgc-seo-signal {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.bgc-seo-signal div {
    min-height: 96px;
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(5, 47, 69, 0.32);
}

.bgc-seo-signal strong,
.bgc-seo-signal span {
    display: block;
}

.bgc-seo-signal strong {
    color: var(--bgc-cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bgc-seo-signal span {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    font-weight: 850;
    line-height: 1.2;
}

.bgc-seo-method ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: method;
}

.bgc-seo-method li {
    position: relative;
    min-height: 170px;
    padding: 48px 18px 18px;
    border: 1px solid rgba(102, 208, 242, 0.15);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.bgc-seo-method li::before {
    counter-increment: method;
    content: "0" counter(method);
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--bgc-cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bgc-seo-method strong {
    color: #ffffff;
}

.bgc-seo-commitments {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 58px);
}

.bgc-seo-list {
    display: grid;
    gap: 10px;
}

.bgc-seo-list p {
    margin: 0;
    padding: 15px 17px;
    border-left: 2px solid rgba(102, 208, 242, 0.44);
    border-radius: 0 14px 14px 0;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.5;
}

.bgc-seo-list strong {
    color: #ffffff;
}

.bgc-seo-faq {
    display: grid;
    gap: 10px;
}

.bgc-seo-faq details {
    border: 1px solid rgba(102, 208, 242, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.bgc-seo-faq summary {
    cursor: pointer;
    padding: 18px 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.bgc-seo-faq p {
    margin: 0;
    padding: 0 20px 18px;
}

.bgc-seo-footer {
    margin-top: clamp(20px, 4vw, 42px);
}

@media (max-width: 980px) {
    .bgc-site-header {
        grid-template-columns: auto 1fr auto;
    }

    .bgc-brand img {
        width: clamp(160px, 45vw, 230px);
    }

    .bgc-desktop-nav {
        display: none;
    }

    .bgc-menu-button {
        display: inline-flex;
    }

    .bgc-portal-link {
        display: none;
    }

    .bgc-lang-select {
        display: none;
    }

    .bgc-footer-inner {
        grid-template-columns: 1fr;
    }

    .bgc-home-hero,
    .bgc-home-section-head,
    .bgc-home-method,
    .bgc-home-zones {
        grid-template-columns: 1fr;
    }

    .bgc-home-service-grid {
        grid-template-columns: 1fr;
    }

    .bgc-seo-hero,
    .bgc-seo-intro,
    .bgc-seo-zones {
        grid-template-columns: 1fr;
    }

    .bgc-seo-grid,
    .bgc-seo-method ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bgc-seo-signal,
    .bgc-seo-commitments {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .bgc-hold {
        --bgc-page-pad: 20px;
        padding: 0 var(--bgc-page-pad) 22px;
    }

    .bgc-site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 14px;
        padding-bottom: 14px;
        gap: 10px;
    }

    .bgc-header-actions {
        margin-left: auto;
    }

    .bgc-brand img {
        width: clamp(154px, 46vw, 178px);
    }

    .bgc-menu-button {
        width: 46px;
        height: 46px;
        justify-self: end;
        margin-right: -6px;
        border-radius: 14px;
        box-shadow: 0 10px 28px rgba(5, 61, 92, 0.16);
    }

    .bgc-menu-button span {
        width: 20px;
        height: 3px;
    }

    .bgc-mobile-drawer {
        width: min(352px, calc(100vw - 42px));
        max-width: calc(100vw - 42px);
        border-radius: 20px 0 0 20px;
    }

    .bgc-drawer-head {
        padding: 20px 20px 13px;
    }

    .bgc-drawer-head img {
        width: min(158px, 58%);
    }

    .bgc-drawer-close {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .bgc-drawer-nav {
        padding-right: 20px;
        padding-left: 20px;
    }

    .bgc-drawer-nav a {
        min-height: 48px;
        font-size: 18px;
    }

    .bgc-drawer-languages {
        gap: 13px;
        padding-top: 15px;
        padding-bottom: 22px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .bgc-drawer-languages a {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .bgc-drawer-cta {
        min-height: 46px;
        margin-right: 20px;
        margin-left: 20px;
        font-size: 18px;
    }

    .bgc-hold-panel {
        padding-top: 46px;
        padding-bottom: 28px;
    }

    .bgc-kicker {
        gap: 10px;
        margin-bottom: 12px;
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .bgc-kicker::before {
        width: 34px;
    }

    .bgc-hold h1 {
        font-size: 34px;
        line-height: 1.06;
    }

    .bgc-hold-lead {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.48;
    }

    .bgc-hold address {
        margin-top: 24px;
        padding-left: 16px;
        font-size: 15px;
        line-height: 1.55;
    }

    .bgc-footer {
        margin: 8px calc(var(--bgc-page-pad) * -1) 0;
        padding: 8px var(--bgc-page-pad) 0;
        background: #052d42;
        box-shadow: none;
    }

    .bgc-footer-inner {
        position: relative;
        gap: 15px;
        padding: 18px 17px 19px;
        overflow: hidden;
        border: 1px solid rgba(102, 208, 242, 0.10);
        border-radius: 26px;
        background:
            linear-gradient(115deg, rgba(255, 255, 255, 0.075), transparent 22%),
            radial-gradient(circle at 12% 0%, rgba(102, 208, 242, 0.12), transparent 26%),
            radial-gradient(circle at 100% 12%, rgba(255, 255, 255, 0.08), transparent 26%),
            linear-gradient(135deg, rgba(5, 47, 69, 0.96), rgba(3, 34, 50, 0.98));
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.10),
            0 28px 90px rgba(0, 18, 28, 0.28);
    }

    .bgc-footer-inner::after {
        display: block;
        position: absolute;
        right: -86px;
        bottom: -148px;
        width: 280px;
        height: 280px;
        border: 1px solid rgba(102, 208, 242, 0.10);
        border-radius: 50%;
    }

    .bgc-footer-inner::before {
        display: block;
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 20%);
    }

    .bgc-footer-kicker,
    .bgc-socials > span,
    .bgc-contact-list h3,
    .bgc-footer-form h3 {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .bgc-footer-kicker {
        gap: 9px;
    }

    .bgc-footer-kicker::before {
        width: 30px;
    }

    .bgc-footer h2 {
        margin-top: 7px;
        font-size: 25px;
        line-height: 1.1;
    }

    .bgc-footer-intro > p:not(.bgc-footer-kicker) {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.42;
    }

    .bgc-socials {
        margin-top: 15px;
    }

    .bgc-socials div {
        gap: 8px;
        margin-top: 11px;
    }

    .bgc-socials a {
        width: 43px;
        height: 43px;
        border-radius: 12px;
    }

    .bgc-socials svg {
        width: 18px;
        height: 18px;
    }

    .bgc-contact-list {
        margin-top: 15px;
    }

    .bgc-contact-list h3,
    .bgc-footer-form h3 {
        padding-bottom: 11px;
    }

    .bgc-contact-cards {
        gap: 8px;
        margin-top: 15px;
    }

    .bgc-contact-card {
        grid-template-columns: minmax(0, 1fr) 40px;
        min-height: 46px;
        padding: 6px 6px 6px 13px;
        font-size: 14px;
        line-height: 1.28;
    }

    .bgc-contact-card button {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .bgc-contact-card button::before {
        width: 12px;
        height: 12px;
        box-shadow: 4px -4px 0 -2px rgba(3, 34, 50, 0.98), 4px -4px 0 0 currentColor;
    }

    .bgc-footer-form form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin-top: 16px;
    }

    .bgc-footer-form input[name="email"],
    .bgc-footer-form select,
    .bgc-footer-form textarea,
    .bgc-consent,
    .bgc-submit {
        grid-column: 1 / -1;
    }

    .bgc-footer-form input,
    .bgc-footer-form select {
        height: 46px;
        padding: 0 14px;
        border-radius: 13px;
        font-size: 14px;
    }

    .bgc-footer-form textarea {
        min-height: 74px;
        padding: 13px 15px;
        border-radius: 13px;
        font-size: 14px;
    }

    .bgc-footer-form select {
        background-position:
            calc(100% - 21px) 21px,
            calc(100% - 15px) 21px;
    }

    .bgc-consent {
        grid-template-columns: 22px minmax(0, 1fr);
        gap: 10px;
        font-size: 12px;
        line-height: 1.35;
    }

    .bgc-consent input {
        width: 22px;
        height: 22px;
        border-radius: 7px;
    }

    .bgc-submit {
        min-height: 48px;
        padding: 0 20px;
        border-radius: 14px;
        font-size: 12px;
    }

    .bgc-footer-bottom {
        gap: 9px;
        padding-top: 15px;
    }

    .bgc-footer-bottom img {
        width: min(130px, 45vw);
    }

    .bgc-footer-bottom nav {
        gap: 10px 18px;
    }

    .bgc-footer-bottom a,
    .bgc-footer-bottom p {
        font-size: 11px;
    }

    .bgc-home-hero {
        gap: 22px;
        padding: 34px 0 24px;
    }

    .bgc-home-copy h1 {
        font-size: 31px;
        line-height: 1.08;
    }

    .bgc-home-lead {
        margin-top: 15px;
        font-size: 15px;
        line-height: 1.5;
    }

    .bgc-home-actions {
        gap: 9px;
        margin-top: 20px;
    }

    .bgc-home-visual-stage {
        min-height: 330px;
        border-radius: 20px;
    }

    .bgc-hero-reset {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .bgc-hero-cutaway {
        right: 10px;
        bottom: 10px;
        min-height: 31px;
        max-width: 116px;
        padding: 0 9px;
        font-size: 8px;
    }

    .bgc-hero-legend {
        bottom: 10px;
        left: 10px;
        padding: 7px 8px;
        font-size: 9px;
    }

    .bgc-home-visual > p {
        font-size: 10px;
        line-height: 1.35;
    }

    .bgc-home-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 26px;
        border-radius: 17px;
    }

    .bgc-home-strip div {
        min-height: 76px;
        padding: 14px 16px;
    }

    .bgc-home-strip div:nth-child(2n) {
        border-right: 0;
    }

    .bgc-home-strip span {
        font-size: 14px;
    }

    .bgc-home-section,
    .bgc-home-section-light {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .bgc-home-section h2 {
        font-size: 23px;
        line-height: 1.12;
    }

    .bgc-home-section-head {
        gap: 12px;
        margin-bottom: 16px;
    }

    .bgc-home-service-grid {
        gap: 10px;
    }

    .bgc-home-service-grid a {
        min-height: 0;
        padding: 17px;
        border-radius: 16px;
    }

    .bgc-home-service-grid strong {
        margin-top: 12px;
        font-size: 17px;
    }

    .bgc-home-method,
    .bgc-home-zones {
        gap: 12px;
    }

    .bgc-home-zones a {
        width: 100%;
        min-height: 44px;
        font-size: 11px;
    }

    .bgc-seo-hero {
        gap: 20px;
        padding: 34px 0 28px;
    }

    .bgc-seo-hero-copy h1 {
        font-size: 31px;
        line-height: 1.08;
    }

    .bgc-seo-hero-copy > p:not(.bgc-kicker),
    .bgc-seo-intro > p,
    .bgc-seo-zones > p {
        font-size: 15px;
        line-height: 1.5;
    }

    .bgc-seo-actions {
        gap: 9px;
        margin-top: 22px;
    }

    .bgc-seo-actions a,
    .bgc-home-actions a {
        min-height: 44px;
        padding: 0 14px;
        border-radius: 13px;
        font-size: 11px;
    }

    .bgc-seo-proof {
        gap: 8px;
        padding: 13px;
        border-radius: 18px;
    }

    .bgc-seo-proof span {
        padding: 10px 12px;
        font-size: 13px;
    }

    .bgc-seo-proof strong {
        padding: 9px 12px 0;
        font-size: 10px;
    }

    .bgc-section-label {
        gap: 10px;
        margin-bottom: 10px;
        font-size: 10px;
    }

    .bgc-section-label::before {
        width: 30px;
    }

    .bgc-seo-intro,
    .bgc-seo-zones,
    .bgc-seo-grid,
    .bgc-seo-method,
    .bgc-seo-commitments,
    .bgc-seo-faq {
        padding: 26px 0;
    }

    .bgc-seo-intro h2,
    .bgc-section-head h2,
    .bgc-seo-zones h2 {
        font-size: 23px;
        line-height: 1.12;
    }

    .bgc-section-head {
        margin-bottom: 16px;
    }

    .bgc-seo-grid,
    .bgc-seo-method ol,
    .bgc-seo-signal,
    .bgc-seo-commitments {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bgc-seo-signal {
        border-radius: 17px;
    }

    .bgc-seo-signal div {
        min-height: 72px;
        padding: 14px 16px;
    }

    .bgc-seo-signal span {
        font-size: 15px;
    }

    .bgc-seo-card,
    .bgc-seo-method li {
        min-height: 0;
        padding: 16px;
        border-radius: 16px;
    }

    .bgc-seo-method li {
        padding-top: 42px;
    }

    .bgc-seo-grid h3 {
        font-size: 17px;
    }

    .bgc-seo-grid p,
    .bgc-seo-method li,
    .bgc-seo-faq p {
        font-size: 14px;
        line-height: 1.48;
    }

    .bgc-seo-faq summary {
        padding: 15px 16px;
        font-size: 15px;
    }

    .bgc-seo-faq p {
        padding: 0 16px 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bgc-hero-loading > span {
        animation: none;
    }

    .bgc-seo-card {
        transition: none;
    }

    .bgc-seo-card:hover {
        transform: none;
    }
}

/* Reusable editorial pages: service, project, contact and partner templates. */
.bgc-site-page {
    --bgc-page-pad: clamp(22px, 5vw, 72px);
    min-height: 100vh;
    overflow: hidden;
    background: #f6f8f7;
    color: #102c38;
}

.bgc-site-page > .bgc-site-header {
    margin: 0;
}

.bgc-page-hero,
.bgc-page-content,
.bgc-page-services,
.bgc-page-faq,
.bgc-page-contact,
.bgc-page-proof {
    padding-right: var(--bgc-page-pad);
    padding-left: var(--bgc-page-pad);
}

.bgc-page-hero {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
    gap: clamp(34px, 6vw, 92px);
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding-top: clamp(44px, 6vw, 92px);
    padding-bottom: clamp(48px, 7vw, 104px);
}

.bgc-page-hero h1,
.bgc-page-content h2,
.bgc-page-services h2,
.bgc-page-faq h2,
.bgc-page-contact h2 {
    margin: 0;
    font-family: var(--bgc-font);
    font-weight: 850;
    letter-spacing: 0;
}

.bgc-page-hero h1 { max-width: 720px; font-size: clamp(36px, 3.5vw, 52px); line-height: 1.06; }
.bgc-page-hero > div > p:not(.bgc-kicker) { max-width: 630px; margin: 22px 0 0; color: #42606a; font-size: 18px; line-height: 1.6; }
.bgc-page-hero .bgc-seo-primary { display: inline-flex; margin-top: 28px; }
.bgc-page-hero figure { margin: 0; }
.bgc-page-hero img { display: block; width: 100%; aspect-ratio: 1.17; object-fit: cover; border-radius: 8px; box-shadow: 0 28px 65px rgba(16, 44, 56, .18); }
.bgc-page-hero figcaption { margin-top: 10px; color: #667c83; font-size: 11px; line-height: 1.4; }

.bgc-page-proof { padding-top: 20px; padding-bottom: 20px; background: #103c50; color: #fff; }
.bgc-page-proof > p { max-width: 1296px; margin: 0 auto 14px; color: #8cd8ee; font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.bgc-page-proof > div { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1296px; margin: 0 auto; }
.bgc-page-proof article { display: flex; gap: 13px; align-items: center; min-height: 60px; padding: 10px 22px 10px 0; border-right: 1px solid rgba(255,255,255,.18); }
.bgc-page-proof article + article { padding-left: 22px; }
.bgc-page-proof article:last-child { border: 0; }
.bgc-page-proof span { color: #6cd4ef; font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.bgc-page-proof strong { font-size: 15px; line-height: 1.3; }

.bgc-page-content { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(36px, 9vw, 150px); max-width: 1296px; margin: 0 auto; padding-top: clamp(58px, 8vw, 120px); padding-bottom: clamp(58px, 8vw, 120px); }
.bgc-page-content h2, .bgc-page-services h2, .bgc-page-faq h2 { max-width: 580px; font-size: clamp(30px, 3vw, 46px); line-height: 1.1; }
.bgc-page-content > div:last-child p { margin: 0; color: #42606a; font-size: 17px; line-height: 1.7; }
.bgc-page-content > div:last-child p + p { margin-top: 18px; }

.bgc-page-services { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(34px, 7vw, 110px); align-items: start; padding-top: clamp(52px, 7vw, 98px); padding-bottom: clamp(52px, 7vw, 98px); background: #e9f1f1; }
.bgc-page-services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.bgc-page-services-grid a { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 85px; padding: 18px 20px; border: 1px solid rgba(16,44,56,.14); border-radius: 8px; color: #102c38; background: rgba(255,255,255,.56); font-weight: 800; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.bgc-page-services-grid a:hover { transform: translateY(-2px); background: #fff; }
.bgc-page-services-grid strong { color: #1787aa; font-size: 22px; }

.bgc-page-faq { max-width: 920px; margin: 0 auto; padding-top: clamp(56px, 8vw, 112px); padding-bottom: clamp(56px, 8vw, 112px); }
.bgc-page-faq > .bgc-section-label { margin-bottom: 13px; }
.bgc-page-faq details { border-bottom: 1px solid rgba(16,44,56,.16); }
.bgc-page-faq details:first-of-type { margin-top: 28px; border-top: 1px solid rgba(16,44,56,.16); }
.bgc-page-faq summary { padding: 19px 35px 19px 0; cursor: pointer; font-size: 17px; font-weight: 800; }
.bgc-page-faq details p { max-width: 720px; margin: 0; padding: 0 0 20px; color: #42606a; line-height: 1.6; }

.bgc-page-contact { display: grid; grid-template-columns: .88fr 1fr; gap: clamp(36px, 8vw, 120px); padding-top: clamp(50px, 7vw, 92px); padding-bottom: clamp(50px, 7vw, 92px); background: #062b3c; color: #fff; }
.bgc-page-contact h2 { max-width: 560px; margin-top: 10px; font-size: clamp(32px, 3.4vw, 52px); line-height: 1.07; }
.bgc-page-contact > div > p:not(.bgc-footer-kicker):not(.bgc-page-contact-details) { max-width: 500px; color: rgba(255,255,255,.72); line-height: 1.6; }
.bgc-page-contact-details { margin-top: 30px; color: #fff; line-height: 1.7; }
.bgc-page-contact-details a { color: #6dd9f2; font-weight: 800; text-decoration: none; }
.bgc-page-contact form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bgc-page-contact form label { display: grid; gap: 7px; color: rgba(255,255,255,.74); font-size: 12px; font-weight: 800; }
.bgc-page-contact form label:nth-child(3), .bgc-page-contact .bgc-consent, .bgc-page-contact .bgc-submit { grid-column: 1 / -1; }
.bgc-page-contact input, .bgc-page-contact textarea { width: 100%; box-sizing: border-box; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; outline: 0; background: rgba(255,255,255,.08); color: #fff; font: inherit; }
.bgc-page-contact input { min-height: 48px; padding: 0 13px; }
.bgc-page-contact textarea { padding: 13px; resize: vertical; }
.bgc-page-contact .bgc-consent { display: flex; align-items: flex-start; gap: 10px; }
.bgc-page-contact .bgc-consent input { width: 18px; min-height: 18px; margin: 0; }

.bgc-page-detail,
.bgc-page-process {
    max-width: 1296px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 108px) var(--bgc-page-pad);
}

.bgc-page-detail {
    background: #f4f8f8;
}

.bgc-page-detail-head,
.bgc-page-process {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: clamp(32px, 7vw, 104px);
}

.bgc-page-detail-head h2,
.bgc-page-process h2 {
    max-width: 600px;
    margin: 0;
    color: #102c38;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.1;
}

.bgc-page-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: clamp(32px, 5vw, 64px);
}

.bgc-page-detail-grid article {
    min-height: 178px;
    padding: 24px;
    border: 1px solid rgba(16, 44, 56, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 40px rgba(16, 44, 56, .05);
}

.bgc-page-detail-grid span,
.bgc-page-process li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 26px;
    border-radius: 6px;
    background: #d9f3fa;
    color: #08799c;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.bgc-page-detail-grid h3,
.bgc-page-process h3 {
    margin: 18px 0 8px;
    color: #102c38;
    font-size: 18px;
    line-height: 1.25;
}

.bgc-page-detail-grid p,
.bgc-page-process p {
    margin: 0;
    color: #42606a;
    font-size: 15px;
    line-height: 1.6;
}

.bgc-page-process {
    align-items: start;
}

.bgc-page-process ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bgc-page-process li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 0 0 24px;
}

.bgc-page-process li + li {
    padding-top: 24px;
    border-top: 1px solid rgba(16, 44, 56, .13);
}

.bgc-page-process li > span {
    width: 36px;
    height: 36px;
    padding: 0;
}

.bgc-page-process h3 { margin-top: 3px; }

.bgc-page-contact select {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 7px;
    outline: 0;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font: inherit;
}

.bgc-page-contact select option { color: #102c38; }
.bgc-page-contact .bgc-page-form-wide { grid-column: 1 / -1; }

@media (max-width: 760px) {
    .bgc-page-hero, .bgc-page-content, .bgc-page-services, .bgc-page-contact, .bgc-page-detail-head, .bgc-page-process { grid-template-columns: 1fr; }
    .bgc-page-hero { gap: 30px; padding-top: 34px; }
    .bgc-page-hero h1 { font-size: 37px; }
    .bgc-page-hero > div > p:not(.bgc-kicker) { font-size: 16px; }
    .bgc-page-hero img { aspect-ratio: 1.15; }
    .bgc-page-proof > div { grid-template-columns: 1fr; }
    .bgc-page-proof article, .bgc-page-proof article + article { min-height: 48px; padding: 10px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
    .bgc-page-proof article:last-child { border: 0; }
    .bgc-page-content, .bgc-page-services, .bgc-page-contact { gap: 28px; }
    .bgc-page-services-grid { grid-template-columns: 1fr; }
    .bgc-page-detail-grid { grid-template-columns: 1fr; }
    .bgc-page-detail, .bgc-page-process { padding-top: 52px; padding-bottom: 52px; }
    .bgc-page-contact form { grid-template-columns: 1fr; }
    .bgc-page-contact form label:nth-child(3), .bgc-page-contact .bgc-consent, .bgc-page-contact .bgc-submit { grid-column: auto; }
}

/* A distinct visual signature for each editorial page. */
.bgc-site-page {
    --bgc-page-accent: #1685a5;
    --bgc-page-accent-soft: #dff1f4;
    --bgc-page-dark: #123b49;
    --bgc-page-hero-bg: #f6f9f8;
    --bgc-page-hero-ink: #102c38;
    --bgc-page-hero-copy: #42606a;
}

.bgc-page-type-renovation-appartement-bruxelles {
    --bgc-page-accent: #b85d43;
    --bgc-page-accent-soft: #f3e5df;
    --bgc-page-dark: #44332f;
    --bgc-page-hero-bg: #faf5f2;
}

.bgc-page-type-renovation-maison-bruxelles {
    --bgc-page-accent: #467563;
    --bgc-page-accent-soft: #e3eee8;
    --bgc-page-dark: #29463b;
    --bgc-page-hero-bg: #f2f7f4;
}

.bgc-page-type-extension-maison-bruxelles {
    --bgc-page-accent: #ae7134;
    --bgc-page-accent-soft: #f3e9dc;
    --bgc-page-dark: #493b2e;
    --bgc-page-hero-bg: #f8f3ec;
}

.bgc-page-type-construction-transformation-belgique {
    --bgc-page-accent: #586f82;
    --bgc-page-accent-soft: #e5ebef;
    --bgc-page-dark: #2d3c49;
    --bgc-page-hero-bg: #f1f4f6;
}

.bgc-page-type-suivi-chantier-bruxelles {
    --bgc-page-accent: #087f9e;
    --bgc-page-accent-soft: #dff1f4;
    --bgc-page-dark: #082f3b;
    --bgc-page-hero-bg: #edf6f7;
}

.bgc-page-type-realisations {
    --bgc-page-accent: #2499c4;
    --bgc-page-accent-soft: #dff2f8;
    --bgc-page-dark: #0b3549;
    --bgc-page-hero-bg: #0b3549;
    --bgc-page-hero-ink: #ffffff;
    --bgc-page-hero-copy: #c9e2ec;
}

.bgc-page-type-partenaires {
    --bgc-page-accent: #1079a8;
    --bgc-page-accent-soft: #e2f2f8;
    --bgc-page-dark: #10445b;
    --bgc-page-hero-bg: #f0f8fb;
}

.bgc-page-type-contact {
    --bgc-page-accent: #5bc6df;
    --bgc-page-accent-soft: #dff2f5;
    --bgc-page-dark: #092f3d;
    --bgc-page-hero-bg: #092f3d;
    --bgc-page-hero-ink: #ffffff;
    --bgc-page-hero-copy: #cadee4;
}

.bgc-site-page .bgc-kicker,
.bgc-site-page .bgc-section-label {
    color: var(--bgc-page-accent);
}

.bgc-site-page .bgc-desktop-nav a.is-active {
    color: var(--bgc-page-accent);
}

.bgc-site-page .bgc-desktop-nav a.is-active::after {
    background: var(--bgc-page-accent);
}

.bgc-page-hero {
    position: relative;
    isolation: isolate;
    color: var(--bgc-page-hero-ink);
}

.bgc-page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: -1;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--bgc-page-hero-bg);
}

.bgc-page-hero-copy {
    position: relative;
    z-index: 2;
}

.bgc-page-hero h1 {
    color: var(--bgc-page-hero-ink);
}

.bgc-page-hero > .bgc-page-hero-copy > p:not(.bgc-kicker) {
    color: var(--bgc-page-hero-copy);
}

.bgc-page-hero .bgc-seo-primary {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 18px;
    border-radius: 7px;
    background: var(--bgc-page-accent);
    box-shadow: 0 14px 32px color-mix(in srgb, var(--bgc-page-accent) 24%, transparent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease;
}

.bgc-page-hero .bgc-seo-primary strong {
    font-size: 18px;
    transition: transform .2s ease;
}

.bgc-page-hero .bgc-seo-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px color-mix(in srgb, var(--bgc-page-accent) 32%, transparent);
}

.bgc-page-hero .bgc-seo-primary:hover strong {
    transform: translateX(4px);
}

.bgc-page-hero-figure {
    position: relative;
    margin: 0;
}

.bgc-page-media-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--bgc-page-accent) 20%, transparent);
    border-radius: 8px;
    background: var(--bgc-page-accent-soft);
    box-shadow: 0 26px 60px rgba(16, 44, 56, .16);
}

.bgc-page-hero .bgc-page-media-shell img {
    border-radius: 0;
    box-shadow: none;
    transition: transform .6s cubic-bezier(.2, .72, .2, 1), filter .35s ease;
}

.bgc-page-hero-figure:hover .bgc-page-media-shell img {
    transform: scale(1.025);
    filter: saturate(1.06) contrast(1.02);
}

.bgc-page-number {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: grid;
    width: 58px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 6px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 30px rgba(16, 44, 56, .14);
    color: var(--bgc-page-accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.bgc-page-hero-figure:hover .bgc-page-number {
    transform: translate(3px, 3px);
    background: var(--bgc-page-accent);
    color: #ffffff;
}

.bgc-page-proof {
    position: relative;
    background: var(--bgc-page-dark);
}

.bgc-page-proof > p,
.bgc-page-proof span {
    color: color-mix(in srgb, var(--bgc-page-accent) 72%, #ffffff);
}

.bgc-page-proof article {
    transition: background .2s ease, transform .2s ease;
}

.bgc-page-proof article:hover {
    background: rgba(255, 255, 255, .055);
    transform: translateY(-2px);
}

.bgc-page-detail {
    position: relative;
    isolation: isolate;
    background: transparent;
}

.bgc-page-detail::before {
    content: "";
    position: absolute;
    inset: 0 calc(50% - 50vw);
    z-index: -1;
    background: var(--bgc-page-accent-soft);
}

.bgc-page-detail-grid article {
    position: relative;
    overflow: hidden;
    border-color: color-mix(in srgb, var(--bgc-page-accent) 24%, transparent);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.bgc-page-detail-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--bgc-page-accent);
    transition: transform .3s ease;
}

.bgc-page-detail-grid article:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--bgc-page-accent) 48%, transparent);
    box-shadow: 0 22px 46px rgba(16, 44, 56, .1);
}

.bgc-page-detail-grid article:hover::before {
    transform: scaleX(1);
}

.bgc-page-detail-grid span,
.bgc-page-process li > span {
    background: var(--bgc-page-accent-soft);
    color: var(--bgc-page-accent);
}

.bgc-page-process li {
    position: relative;
}

.bgc-page-process li::before {
    content: "";
    position: absolute;
    top: 36px;
    bottom: 0;
    left: 17px;
    width: 1px;
    background: color-mix(in srgb, var(--bgc-page-accent) 35%, transparent);
}

.bgc-page-process li:last-child::before {
    display: none;
}

.bgc-page-process li + li {
    border-top: 0;
}

.bgc-page-process li > span {
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.bgc-page-process li:hover > span {
    transform: scale(1.06);
    background: var(--bgc-page-accent);
    color: #ffffff;
}

.bgc-page-services {
    background: color-mix(in srgb, var(--bgc-page-accent-soft) 68%, #eef1f0);
}

.bgc-page-services-grid a {
    position: relative;
    overflow: hidden;
    border-color: color-mix(in srgb, var(--bgc-page-accent) 22%, transparent);
}

.bgc-page-services-grid a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    transform: scaleY(0);
    transform-origin: bottom center;
    background: var(--bgc-page-accent);
    transition: transform .25s ease;
}

.bgc-page-services-grid a:hover::before {
    transform: scaleY(1);
}

.bgc-page-services-grid strong {
    color: var(--bgc-page-accent);
    transition: transform .2s ease;
}

.bgc-page-services-grid a:hover strong {
    transform: translateX(4px);
}

.bgc-page-faq summary {
    position: relative;
    list-style: none;
    transition: color .2s ease;
}

.bgc-page-faq summary::-webkit-details-marker {
    display: none;
}

.bgc-page-faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 4px;
    color: var(--bgc-page-accent);
    font-size: 24px;
    font-weight: 500;
    transform: translateY(-52%);
}

.bgc-page-faq details[open] summary::after {
    content: "−";
}

.bgc-page-faq summary:hover {
    color: var(--bgc-page-accent);
}

.bgc-page-contact {
    background: var(--bgc-page-dark);
}

.bgc-page-type-realisations .bgc-page-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bgc-page-type-realisations .bgc-page-media-shell img,
.bgc-page-type-contact .bgc-page-media-shell img {
    aspect-ratio: 1.36;
}

.bgc-page-type-realisations .bgc-page-hero figcaption,
.bgc-page-type-contact .bgc-page-hero figcaption {
    color: rgba(255, 255, 255, .62);
}

.bgc-page-type-partenaires .bgc-page-detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.bgc-page-type-partenaires .bgc-page-detail-grid article {
    min-height: 220px;
    border-radius: 0;
    box-shadow: none;
}

.bgc-page-type-partenaires .bgc-page-detail-grid article:first-child {
    border-radius: 8px 0 0 8px;
}

.bgc-page-type-partenaires .bgc-page-detail-grid article:last-child {
    border-radius: 0 8px 8px 0;
}

.bgc-page-type-suivi-chantier-bruxelles .bgc-page-process {
    position: relative;
    isolation: isolate;
}

.bgc-page-type-suivi-chantier-bruxelles .bgc-page-process::before {
    content: "";
    position: absolute;
    inset: 0 calc(50% - 50vw);
    z-index: -1;
    background: var(--bgc-page-dark);
}

.bgc-page-type-suivi-chantier-bruxelles .bgc-page-process h2,
.bgc-page-type-suivi-chantier-bruxelles .bgc-page-process h3 {
    color: #ffffff;
}

.bgc-page-type-suivi-chantier-bruxelles .bgc-page-process p {
    color: rgba(255, 255, 255, .7);
}

.bgc-page-type-suivi-chantier-bruxelles .bgc-page-process li::before {
    background: rgba(255, 255, 255, .2);
}

@media (min-width: 761px) {
    .bgc-page-type-renovation-appartement-bruxelles .bgc-page-hero-copy,
    .bgc-page-type-partenaires .bgc-page-hero-copy {
        grid-column: 2;
        grid-row: 1;
    }

    .bgc-page-type-renovation-appartement-bruxelles .bgc-page-hero-figure,
    .bgc-page-type-partenaires .bgc-page-hero-figure {
        grid-column: 1;
        grid-row: 1;
    }

    .bgc-page-type-realisations .bgc-page-hero {
        grid-template-columns: minmax(0, .72fr) minmax(440px, 1.28fr);
    }

    .bgc-page-type-contact .bgc-page-hero {
        grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    }
}

@media (max-width: 760px) {
    .bgc-page-hero {
        padding-bottom: 42px;
    }

    .bgc-page-hero-figure,
    .bgc-page-hero-copy {
        grid-column: 1;
    }

    .bgc-page-type-realisations .bgc-page-detail-grid,
    .bgc-page-type-partenaires .bgc-page-detail-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bgc-page-type-partenaires .bgc-page-detail-grid article,
    .bgc-page-type-partenaires .bgc-page-detail-grid article:first-child,
    .bgc-page-type-partenaires .bgc-page-detail-grid article:last-child {
        min-height: 0;
        border-radius: 8px;
    }

    .bgc-page-number {
        top: 12px;
        left: 12px;
        width: 50px;
        height: 38px;
    }

    .bgc-page-proof article:hover,
    .bgc-page-detail-grid article:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .bgc-motion-enabled [data-bgc-reveal],
    .bgc-motion-enabled [data-bgc-stagger] > * {
        opacity: 0;
        transform: translateY(22px);
        transition:
            opacity .58s cubic-bezier(.2, .72, .2, 1),
            transform .58s cubic-bezier(.2, .72, .2, 1),
            clip-path .72s cubic-bezier(.2, .72, .2, 1);
        transition-delay: var(--bgc-reveal-delay, 0ms);
    }

    .bgc-motion-enabled [data-bgc-reveal="wipe"] {
        clip-path: inset(0 12% 0 0);
        transform: translateX(18px);
    }

    .bgc-motion-enabled [data-bgc-reveal="split"] {
        transform: translateX(-18px);
    }

    .bgc-motion-enabled [data-bgc-reveal].is-visible,
    .bgc-motion-enabled [data-bgc-stagger] > *.is-visible {
        opacity: 1;
        clip-path: inset(0);
        transform: none;
    }
}

/* Client project space */
.bgc-home-portal {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
    gap: clamp(38px, 6vw, 84px);
    align-items: center;
    margin: 0 calc(var(--bgc-page-pad) * -1);
    padding: 64px max(var(--bgc-page-pad), calc((100vw - 1180px) / 2));
    overflow: hidden;
    background:
        linear-gradient(110deg, #092e40 0%, #0b3c52 55%, #0b536f 100%);
    color: #ffffff;
    isolation: isolate;
}

.bgc-home-portal::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.bgc-home-portal-copy h2 {
    max-width: 560px;
    margin: 0;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.07;
}

.bgc-home-portal-copy > p:not(.bgc-section-label) {
    max-width: 570px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.58;
}

.bgc-portal-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 30px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
}

.bgc-portal-features div {
    min-height: 126px;
    padding: 18px;
    background: rgba(5, 41, 57, .72);
}

.bgc-portal-features dt {
    color: #ffffff;
    font-size: 14px;
    font-weight: 850;
}

.bgc-portal-features dd {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.45;
}

.bgc-portal-section-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-top: 24px;
    padding: 0 18px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 15, 23, .2);
    color: #0d4a64;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
}

.bgc-portal-section-cta strong {
    color: #168cb8;
    font-size: 18px;
}

.bgc-portal-preview {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 14px;
    background: #f5f9fb;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .8),
        0 34px 80px rgba(0, 17, 27, .34);
    color: #102834;
    transform: perspective(1100px) rotateY(-4deg) rotateX(1deg);
    transform-origin: center right;
}

.bgc-portal-preview-bar {
    display: flex;
    height: 44px;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border-bottom: 1px solid #dce8ec;
    background: rgba(255, 255, 255, .9);
}

.bgc-portal-preview-bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cad9df;
}

.bgc-portal-preview-bar i:nth-child(2) { background: #9fdcf0; }
.bgc-portal-preview-bar i:nth-child(3) { background: #1788b3; }

.bgc-portal-preview-bar span {
    margin-left: 8px;
    color: #48606a;
    font-size: 11px;
    font-weight: 800;
}

.bgc-portal-preview-body {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 430px;
}

.bgc-portal-preview-side {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 24px 14px;
    background: #0a3549;
}

.bgc-portal-preview-side b {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
}

.bgc-portal-preview-side span {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .24);
}

.bgc-portal-preview-side span.is-active {
    width: 30px;
    background: #64cfef;
}

.bgc-portal-preview-main {
    padding: 28px;
}

.bgc-portal-preview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.bgc-portal-preview-head small,
.bgc-portal-preview-head strong {
    display: block;
}

.bgc-portal-preview-head small,
.bgc-portal-preview-grid small {
    color: #70848c;
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.bgc-portal-preview-head strong {
    margin-top: 5px;
    font-size: 22px;
}

.bgc-portal-preview-head em {
    padding: 7px 9px;
    border: 1px solid #bfe3ef;
    border-radius: 6px;
    background: #e8f7fb;
    color: #147ca3;
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
}

.bgc-portal-preview-progress {
    height: 5px;
    margin: 24px 0;
    overflow: hidden;
    border-radius: 3px;
    background: #dce8ec;
}

.bgc-portal-preview-progress span {
    display: block;
    width: 68%;
    height: 100%;
    background: linear-gradient(90deg, #167fa5, #61cdec);
}

.bgc-portal-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.bgc-portal-preview-grid article {
    position: relative;
    min-height: 132px;
    padding: 16px;
    border: 1px solid #dce8ec;
    border-radius: 8px;
    background: #ffffff;
}

.bgc-portal-preview-grid strong,
.bgc-portal-preview-grid span {
    display: block;
}

.bgc-portal-preview-grid strong {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.25;
}

.bgc-portal-preview-grid span {
    margin-top: 7px;
    color: #70848c;
    font-size: 11px;
}

.bgc-portal-preview-grid .is-decision {
    border-color: #9fdcf0;
    background: #edf9fc;
}

.bgc-portal-preview-grid .is-decision > span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 26px;
    height: 26px;
    margin: 0;
    border-radius: 50%;
    background: #168cb8;
    color: #ffffff;
    place-items: center;
}

.bgc-portal-preview-feed {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.bgc-portal-preview-feed span {
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(90deg, #dce8ec 0 38%, #edf3f5 38% 100%);
}

.bgc-portal-preview-feed span:nth-child(2) { width: 88%; }
.bgc-portal-preview-feed span:nth-child(3) { width: 72%; }

@media (max-width: 980px) {
    .bgc-home-portal {
        grid-template-columns: 1fr;
    }

    .bgc-portal-preview {
        width: min(100%, 720px);
        transform: none;
    }
}

@media (max-width: 620px) {
    .bgc-home-portal {
        gap: 30px;
        padding-top: 42px;
        padding-bottom: 44px;
    }

    .bgc-home-portal-copy h2 {
        font-size: 30px;
    }

    .bgc-portal-features div {
        min-height: 112px;
        padding: 14px;
    }

    .bgc-portal-features dt {
        font-size: 12px;
    }

    .bgc-portal-features dd {
        font-size: 11px;
        line-height: 1.38;
    }

    .bgc-portal-preview-body {
        grid-template-columns: 44px minmax(0, 1fr);
        min-height: 326px;
    }

    .bgc-portal-preview-side {
        gap: 17px;
        padding: 20px 9px;
    }

    .bgc-portal-preview-side b {
        font-size: 10px;
    }

    .bgc-portal-preview-side span,
    .bgc-portal-preview-side span.is-active {
        width: 20px;
    }

    .bgc-portal-preview-main {
        padding: 18px 14px;
    }

    .bgc-portal-preview-head strong {
        font-size: 17px;
    }

    .bgc-portal-preview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bgc-portal-preview-grid article {
        min-height: 110px;
        padding: 12px;
    }

    .bgc-portal-preview-grid article:first-child {
        display: none;
    }

    .bgc-portal-preview-grid strong {
        margin-top: 14px;
        font-size: 12px;
    }
}

/* Consistent reading size across public content. */
.bgc-home-lead,
.bgc-footer-intro > p:not(.bgc-footer-kicker),
.bgc-home-section-head > p,
.bgc-home-method > p,
.bgc-home-portal-copy > p:not(.bgc-section-label),
.bgc-portal-features dt,
.bgc-portal-features dd,
.bgc-seo-hero-copy > p:not(.bgc-kicker),
.bgc-seo-intro > p,
.bgc-seo-zones > p,
.bgc-seo-grid p,
.bgc-seo-method li,
.bgc-seo-faq p,
.bgc-page-hero > div > p:not(.bgc-kicker),
.bgc-page-content > div:last-child p,
.bgc-page-detail-grid p,
.bgc-page-process p,
.bgc-page-faq details p,
.bgc-page-contact > div > p:not(.bgc-footer-kicker):not(.bgc-page-contact-details) {
    font-size: 17px;
    line-height: 1.65;
}

@media (max-width: 620px) {
    .bgc-portal-features {
        grid-template-columns: 1fr;
    }

    .bgc-portal-features div {
        min-height: 0;
    }
}
