:root {
    --bp-black: #000000;
    --bp-dark: #050505;
    --bp-gold: #D9A75C;
    --bp-white: #ffffff;
    --bp-grey: #8C8C8D;
    --bp-border: rgba(255, 255, 255, .11);
    --bp-font-body: "Inter", Arial, sans-serif;
    --bp-font-title: "Crimson Text", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--bp-font-body);
    color: var(--bp-white);
    background: var(--bp-black);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.bp-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

/* HEADER */
.bp-site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 22px 0;
    background: transparent;
}

.bp-header-inner {
    display: grid;
    grid-template-columns: 130px 1fr 190px;
    align-items: center;
    gap: 28px;
}

.bp-header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.bp-header-logo img {
    display: block;
    width: 112px;
    max-width: 112px;
    height: auto;
}

.bp-header-nav {
    display: flex;
    justify-content: center;
}

.bp-header-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bp-header-nav a {
    color: var(--bp-white);
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
}

.bp-header-nav a:hover {
    color: var(--bp-gold);
}

.bp-header-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 30px;
    border: 1px solid var(--bp-gold);
    border-radius: 3px;
    color: var(--bp-gold);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
}

.bp-header-cta:hover {
    background: var(--bp-gold);
    color: var(--bp-black);
}

/* MOBILE MENU */
.bp-mobile-toggle,
.bp-mobile-menu {
    display: none;
}

.bp-mobile-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--bp-gold);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.bp-mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--bp-gold);
}

.bp-mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--bp-gold);
    border-radius: 50%;
    background: transparent;
    color: var(--bp-gold);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.bp-mobile-close:hover {
    background: var(--bp-gold);
    color: var(--bp-black);
}

/* HERO */
.bp-hero-section {
    position: relative;
    min-height: 620px;
    padding-top: 76px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bp-black);
    color: var(--bp-white);
}

.bp-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .72) 42%, rgba(0, 0, 0, .28) 100%),
        url("../img/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    opacity: .96;
}

.bp-hero-section .bp-container {
    position: relative;
    z-index: 2;
}

.bp-hero-content {
    max-width: 800px;
    padding: 70px 0 95px;
}

.bp-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bp-hero-content h1 {
    max-width: 800px;
    margin: 0 0 26px;
    color: var(--bp-white);
    font-family: var(--bp-font-title);
    font-size: clamp(52px, 5.4vw, 82px);
    font-weight: 700;
    line-height: .84;
    letter-spacing: -0.035em;
}

.bp-hero-content h1 span {
    color: var(--bp-gold);
}

.bp-hero-content p {
    max-width: 470px;
    margin: 0 0 34px;
    color: #B8B8B8;
    font-size: 13px;
    line-height: 1.65;
}

.bp-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.bp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
}

.bp-btn-primary {
    background: var(--bp-gold);
    color: var(--bp-black);
    border: 1px solid var(--bp-gold);
}

.bp-btn-outline {
    background: transparent;
    color: var(--bp-gold);
    border: 1px solid var(--bp-gold);
}

/* HERO FEATURES */
.bp-hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    margin-top: 72px;
    max-width: 920px;
}

.bp-hero-feature {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 22px;
    align-items: center;
    padding-right: 34px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.bp-hero-feature:last-child {
    border-right: 0;
}

.bp-hero-feature-icon img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.bp-hero-feature h3 {
    margin: 0 0 8px;
    color: var(--bp-white);
    font-size: 13px;
    font-weight: 600;
}

.bp-hero-feature p {
    margin: 0;
    color: #B8B8B8;
    font-size: 13px;
    line-height: 1.6;
}

/* SERVICES */
.bp-services-section {
    background: var(--bp-black);
    padding: 72px 0 78px;
    color: var(--bp-white);
}

.bp-section-heading,
.bp-services-heading {
    position: relative;
    display: block;
    margin-bottom: 58px;
}

.bp-services-heading h2 {
    max-width: 620px;
    margin: 0;
    color: var(--bp-white);
    font-family: var(--bp-font-title);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.02;
}

.bp-slider-arrows {
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.bp-slider-arrows button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--bp-gold);
    border-radius: 50%;
    background: transparent;
    color: var(--bp-gold);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.bp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.bp-service-card {
    position: relative;
    min-height: 318px;
    padding: 0 42px 0 0;
}

.bp-service-card + .bp-service-card {
    padding-left: 42px;
    border-left: 1px solid var(--bp-border);
}

.bp-service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    border: 1px solid var(--bp-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-service-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.bp-service-number {
    display: block;
    margin-bottom: 13px;
    color: var(--bp-gold);
    font-size: 13px;
    font-weight: 600;
}

.bp-service-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-family: var(--bp-font-title);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.bp-service-card p {
    max-width: 240px;
    margin: 0 0 17px;
    color: #7D7D7D;
    font-size: 13px;
    line-height: 1.55;
}

.bp-service-card ul {
    display: grid;
    gap: 6px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.bp-service-card li {
    position: relative;
    padding-left: 12px;
    color: #858586;
    font-size: 12px;
    line-height: 1.35;
}

.bp-service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .6em;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #D9D9D9;
}

.bp-service-link {
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.bp-service-link:hover {
    text-decoration: underline;
}

/* FOOTER */
.bp-site-footer {
    background: var(--bp-black);
    color: var(--bp-white);
    padding: 58px 0 26px;
}

.bp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr .8fr 1.1fr;
    gap: 54px;
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.bp-footer-brand img {
    display: block;
    width: 118px;
    margin-bottom: 22px;
}

.bp-footer-brand p {
    max-width: 280px;
    margin: 0;
    color: #8d8d8d;
    font-size: 13px;
    line-height: 1.7;
}

.bp-footer-col {
    border-left: 1px solid rgba(255, 255, 255, .12);
    padding-left: 34px;
}

.bp-footer-col h3 {
    margin: 0 0 18px;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bp-footer-col ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bp-footer-col a,
.bp-footer-col li {
    color: #8d8d8d;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
}

.bp-footer-col a:hover {
    color: var(--bp-gold);
}

.bp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
}

.bp-footer-bottom p {
    margin: 0;
    color: #777;
    font-size: 11px;
}

.bp-footer-bottom div {
    display: flex;
    gap: 28px;
}

.bp-footer-bottom a {
    color: #777;
    font-size: 11px;
    text-decoration: none;
}

.bp-footer-bottom a:hover {
    color: var(--bp-gold);
}

.bp-footer-social {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.bp-footer-social a {
    width: 48px;
    height: 48px;
    border: 1px solid var(--bp-gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding: 0;
    line-height: 0;
    transition: all .25s ease;
}

.bp-footer-social img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
    margin: 0;
}

.bp-footer-social a:hover {
    background: var(--bp-gold);
}

.bp-footer-social a:hover img {
    filter: brightness(0);
}

@media (max-width: 991px) {
    .bp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-footer-col {
        padding-left: 24px;
    }
}

@media (max-width: 767px) {
    .bp-site-footer {
        padding: 46px 0 24px;
    }

    .bp-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .bp-footer-col {
        border-left: 0;
        padding-left: 0;
    }

    .bp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .bp-header-inner {
        grid-template-columns: auto auto;
    }

    .bp-header-nav,
    .bp-header-cta {
        display: none;
    }

    .bp-mobile-toggle {
        display: block;
        justify-self: end;
    }

    .bp-mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        background: rgba(0, 0, 0, .96);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .25s ease;
    }

    body.bp-menu-open .bp-mobile-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .bp-mobile-menu ul {
        display: grid;
        gap: 24px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .bp-mobile-menu a {
        color: var(--bp-white);
        font-family: var(--bp-font-title);
        font-size: 34px;
        font-weight: 700;
        text-decoration: none;
    }

    .bp-mobile-menu a:hover {
        color: var(--bp-gold);
    }

    .bp-mobile-cta {
        margin-top: 36px;
        color: var(--bp-gold) !important;
        font-family: var(--bp-font-body) !important;
        font-size: 13px !important;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    .bp-hero-features {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 46px;
    }

    .bp-hero-feature {
        border-right: 0;
        padding-right: 0;
    }

    .bp-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 0;
    }

    .bp-service-card {
        padding: 0 32px 0 0;
    }

    .bp-service-card + .bp-service-card {
        padding-left: 32px;
    }

    .bp-service-card:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .bp-container {
        width: min(100% - 32px, 1200px);
    }

    .bp-site-header {
        padding: 18px 0;
    }

    .bp-header-logo img {
        width: 96px;
        max-width: 96px;
    }

    .bp-hero-section {
        min-height: 560px;
        padding-top: 70px;
    }

    .bp-hero-section::before {
        background-position: 58% center;
    }

    .bp-hero-content {
        padding: 70px 0;
    }

    .bp-hero-content h1 {
        font-size: 48px;
    }

    .bp-services-section {
        padding: 60px 0;
    }

    .bp-section-heading,
    .bp-services-heading {
        margin-bottom: 40px;
    }

    .bp-services-heading h2 {
        font-size: 32px;
    }

    .bp-slider-arrows {
        display: none;
    }

    .bp-services-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .bp-service-card,
    .bp-service-card + .bp-service-card {
        padding: 0 0 34px;
        border-left: 0;
        border-bottom: 1px solid var(--bp-border);
    }

    .bp-service-card:last-child {
        border-bottom: 0;
    }

    .bp-service-card p {
        max-width: 100%;
    }
}

.bp-slider-arrows {
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.bp-slider-arrows button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #D9A75C;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-slider-arrows button img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* section objectives */

/* OBJECTIVES */
.bp-objectives-section {
    background: #f4f4f4;
    padding: 78px 0 72px;
    color: #000;
    overflow: hidden;
}

.bp-objectives-section .bp-eyebrow {
    display: block;
    margin-bottom: 16px;
    text-align: center;
    color: var(--bp-gold);
}

.bp-objectives-title {
    margin: 0 0 56px;
    text-align: center;
    font-family: var(--bp-font-title);
    font-size: 36px;
    line-height: 1;
    color: #111;
}

.bp-objectives-wrapper {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 18px;
}

.bp-objectives-swiper {
    width: 100%;
    overflow: hidden;
    padding-top: 6px;
}

.bp-objectives-swiper .swiper-wrapper {
    align-items: stretch;
}

.bp-objectives-swiper .swiper-slide {
    height: auto;
}

.bp-objective-card {
    min-height: 190px;
    height: 100%;
    padding: 26px 16px 24px;
    background: #fff;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-align: center;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease;
}

.bp-objective-card:hover {
    border-color: var(--bp-gold);
    transform: translateY(-3px);
}

.bp-objective-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.bp-objective-card span {
    color: #111;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.bp-obj-prev,
.bp-obj-next {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--bp-gold);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-obj-prev img,
.bp-obj-next img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.bp-objectives-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 38px;
}

.bp-objectives-dots .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 !important;
    border-radius: 50%;
    background: #d5d5d5;
    opacity: 1;
}

.bp-objectives-dots .swiper-pagination-bullet-active {
    background: var(--bp-gold);
}

@media (max-width: 1100px) {
    .bp-objectives-wrapper {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 14px;
    }
}

@media (max-width: 767px) {
    .bp-objectives-section {
        padding: 60px 0;
    }

    .bp-objectives-title {
        font-size: 34px;
        margin-bottom: 36px;
    }

    .bp-objectives-wrapper {
        grid-template-columns: 1fr;
    }

    .bp-obj-prev,
    .bp-obj-next {
        display: none;
    }

    .bp-objective-card {
        min-height: 180px;
    }
}

/* CLIENTS */
.bp-clients-section {
    background: #fff;
    padding: 26px 0;
    overflow: hidden;
}

.bp-clients-swiper {
    width: 100%;
}

.bp-clients-swiper .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important;
}

.bp-clients-swiper .swiper-slide {
    width: 140px !important;
}

.bp-client-logo {
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-client-logo img {
    display: block;
    width: auto !important;
    height: 34px !important;
    max-width: 110px !important;
    max-height: 34px !important;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .9;
}
/* UPDATED NAVIGATION + MEGA MENU */
.bp-nav-list { position: relative; }
.bp-nav-item-has-mega { position: static; }
.bp-mega-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 18px);
    width: min(1120px, calc(100vw - 48px));
    transform: translateX(-50%) translateY(8px);
    padding-top: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .22s ease;
}
.bp-nav-item-has-mega:hover .bp-mega-menu,
.bp-nav-item-has-mega:focus-within .bp-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.bp-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    padding: 14px;
    background: rgba(0,0,0,.92);
    border: 1px solid rgba(217,167,92,.45);
    box-shadow: 0 24px 70px rgba(0,0,0,.5);
    backdrop-filter: blur(14px);
}
.bp-mega-card,
.bp-mega-products {
    min-height: 190px;
    padding: 22px;
    background: rgba(255,255,255,.045);
    text-decoration: none;
}
.bp-mega-card span {
    display: block;
    margin-bottom: 14px;
    color: var(--bp-gold);
    font-size: 11px;
    letter-spacing: .12em;
}
.bp-mega-card strong,
.bp-mega-products strong {
    display: block;
    margin-bottom: 9px;
    color: #fff;
    font-family: var(--bp-font-title);
    font-size: 21px;
    line-height: 1.05;
    text-transform: none;
    letter-spacing: 0;
}
.bp-mega-card em,
.bp-mega-products span {
    display: block;
    color: #b8b8b8;
    font-size: 12px;
    line-height: 1.45;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
}
.bp-mega-card:hover { background: rgba(217,167,92,.12); }
.bp-mega-products {
    grid-column: 1 / -1;
    min-height: 0;
    display: grid;
    grid-template-columns: 160px 1.5fr 1fr;
    align-items: center;
    gap: 18px;
    border-top: 1px solid rgba(217,167,92,.35);
}
.bp-mega-products small {
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.bp-mega-products a {
    display: block;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,.1);
    text-decoration: none;
}
.bp-mega-products .bp-product-featured { border-color: var(--bp-gold); background: rgba(217,167,92,.1); }

.bp-mobile-nav { display: grid; gap: 18px; max-height: calc(100vh - 150px); overflow-y: auto; padding-right: 8px; }
.bp-mobile-nav > a,
.bp-mobile-accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--bp-white);
    font-family: var(--bp-font-title);
    font-size: 34px;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
}
.bp-mobile-accordion-toggle span { color: var(--bp-gold); }
.bp-mobile-accordion-panel { display: none; margin: -4px 0 6px; padding: 16px; border: 1px solid rgba(217,167,92,.35); background: rgba(255,255,255,.04); }
.bp-mobile-accordion-panel.is-open { display: grid; gap: 13px; }
.bp-mobile-accordion-panel a { text-decoration: none; }
.bp-mobile-accordion-panel strong { display: block; color: #fff; font-size: 15px; line-height: 1.2; }
.bp-mobile-accordion-panel small { display: block; margin-top: 4px; color: #aaa; font-size: 12px; line-height: 1.35; }
.bp-mobile-product { padding-top: 12px; border-top: 1px solid rgba(217,167,92,.25); }

/* OBJECTIVE CARD MICROCOPY */
.bp-objective-card { justify-content: flex-start; }
.bp-objective-card p {
    margin: -8px 0 0;
    color: #6d6d6d;
    font-size: 12px;
    line-height: 1.45;
}
.bp-objective-card-alt {
    background: transparent;
    border-color: var(--bp-gold);
}

/* PERFORMANCE */
.bp-performance-section {
    padding: 82px 0;
    background: #080808;
    color: #fff;
}
.bp-performance-heading h2,
.bp-inner-section h2,
.bp-products-section h2 {
    margin: 0;
    color: #fff;
    font-family: var(--bp-font-title);
    font-size: 42px;
    line-height: 1.02;
}
.bp-performance-heading p {
    max-width: 680px;
    margin: 16px 0 0;
    color: #a7a7a7;
    font-size: 14px;
    line-height: 1.7;
}
.bp-performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}
.bp-performance-grid article {
    min-height: 210px;
    padding: 28px;
    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.025);
}
.bp-performance-grid strong {
    display: block;
    margin-bottom: 18px;
    color: var(--bp-gold);
    font-family: var(--bp-font-title);
    font-size: clamp(42px, 5vw, 70px);
    line-height: .85;
}
.bp-performance-grid span {
    color: #c9c9c9;
    font-size: 14px;
    line-height: 1.55;
}
.bp-performance-page { background: #000; padding-top: 0; }

/* INTERNAL PAGES */
.bp-inner-hero {
    position: relative;
    padding: 180px 0 92px;
    background: linear-gradient(120deg, rgba(0,0,0,.96), rgba(0,0,0,.84)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}
.bp-inner-hero h1 {
    max-width: 900px;
    margin: 0 0 22px;
    color: #fff;
    font-family: var(--bp-font-title);
    font-size: clamp(48px, 6vw, 78px);
    line-height: .92;
    letter-spacing: -.035em;
}
.bp-inner-hero p {
    max-width: 720px;
    margin: 0;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.75;
}
.bp-inner-section {
    padding: 86px 0;
    background: #000;
    color: #fff;
}
.bp-inner-section:nth-of-type(even) { background: #080808; }
.bp-competence-stack { display: grid; gap: 28px; }
.bp-competence-block {
    scroll-margin-top: 120px;
    padding: 42px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.025);
}
.bp-competence-block > span,
.bp-method-grid article > span,
.bp-publications-grid article > span {
    display: block;
    margin-bottom: 16px;
    color: var(--bp-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.bp-competence-block em {
    display: block;
    margin: 12px 0 18px;
    color: var(--bp-gold);
    font-family: var(--bp-font-title);
    font-size: 22px;
    line-height: 1.25;
}
.bp-competence-block p,
.bp-inner-section p,
.bp-inner-section li {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.75;
}
.bp-competence-block ul,
.bp-contact-layout ul {
    display: grid;
    gap: 9px;
    margin: 24px 0 0;
    padding-left: 18px;
}
.bp-mini-groups,
.bp-products-grid,
.bp-method-grid,
.bp-case-grid,
.bp-ideas-grid,
.bp-publications-grid,
.bp-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 28px;
}
.bp-mini-groups div,
.bp-products-grid article,
.bp-method-grid article,
.bp-case-grid article,
.bp-ideas-grid article,
.bp-publications-grid article,
.bp-about-grid article,
.bp-contact-box {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.025);
}
.bp-mini-groups strong,
.bp-product-card strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}
.bp-products-section { background: #080808; }
.bp-product-card-featured { border-color: var(--bp-gold) !important; background: rgba(217,167,92,.09) !important; }
.bp-publication-wide { grid-column: 1 / -1; }
.bp-publication-wide b {
    display: inline-flex;
    margin-top: 12px;
    padding: 8px 12px;
    border: 1px solid var(--bp-gold);
    color: var(--bp-gold);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.bp-contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start; }
.bp-contact-box h2 { font-size: 32px; }

@media (max-width: 1280px) {
    .bp-header-inner { grid-template-columns: 112px 1fr 178px; gap: 16px; }
    .bp-header-nav ul { gap: 17px; }
    .bp-header-nav a { font-size: 9px; }
}

@media (max-width: 1100px) {
    .bp-mobile-menu { justify-content: flex-start; padding: 98px 32px 32px; }
    .bp-mobile-menu ul { display: none; }
    .bp-mobile-menu a:hover,
    .bp-mobile-accordion-toggle:hover { color: var(--bp-gold); }
}

@media (max-width: 900px) {
    .bp-performance-grid,
    .bp-mini-groups,
    .bp-products-grid,
    .bp-method-grid,
    .bp-case-grid,
    .bp-ideas-grid,
    .bp-publications-grid,
    .bp-about-grid,
    .bp-contact-layout { grid-template-columns: 1fr; }
    .bp-publication-wide { grid-column: auto; }
}

@media (max-width: 767px) {
    .bp-mobile-nav > a,
    .bp-mobile-accordion-toggle { font-size: 30px; }
    .bp-inner-hero { padding: 138px 0 66px; }
    .bp-inner-hero h1 { font-size: 46px; }
    .bp-inner-section,
    .bp-performance-section { padding: 62px 0; }
    .bp-competence-block,
    .bp-mini-groups div,
    .bp-products-grid article,
    .bp-method-grid article,
    .bp-case-grid article,
    .bp-ideas-grid article,
    .bp-publications-grid article,
    .bp-about-grid article,
    .bp-contact-box { padding: 24px; }
    .bp-performance-grid { display: grid; grid-template-columns: 1fr; }
    .bp-performance-grid article { min-height: 0; }
}

/* === BP INTERNAL PAGES REDESIGN + DROPDOWN FIX === */
.bp-nav-item-has-mega { position: static; }
.bp-mega-menu {
    top: 100%;
    padding-top: 26px;
    z-index: 150;
}
.bp-mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 28px;
}
.bp-mega-grid { border-radius: 18px; overflow: hidden; }

.bp-page-hero {
    position: relative;
    padding: 182px 0 104px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 25%, rgba(217,167,92,.20), transparent 34%),
        linear-gradient(135deg, #000 0%, #070707 48%, #111 100%);
}
.bp-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}
.bp-page-hero::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    right: -120px;
    bottom: -180px;
    border: 1px solid rgba(217,167,92,.32);
    border-radius: 50%;
}
.bp-hero-metodo { background: radial-gradient(circle at 82% 26%, rgba(217,167,92,.24), transparent 34%), linear-gradient(135deg,#000,#0a0906 54%,#18110a); }
.bp-hero-performance { background: radial-gradient(circle at 80% 22%, rgba(217,167,92,.28), transparent 35%), linear-gradient(135deg,#000,#080808 45%,#170b02); }
.bp-hero-casi { background: radial-gradient(circle at 78% 20%, rgba(150,110,54,.28), transparent 34%), linear-gradient(135deg,#000,#0b0b0b 46%,#111); }
.bp-hero-idee { background: radial-gradient(circle at 78% 22%, rgba(217,167,92,.18), transparent 34%), linear-gradient(135deg,#000,#080806 46%,#17130d); }
.bp-hero-formazione { background: radial-gradient(circle at 82% 20%, rgba(217,167,92,.22), transparent 35%), linear-gradient(135deg,#000,#070707 48%,#14110c); }
.bp-hero-pubblicazioni { background: radial-gradient(circle at 78% 20%, rgba(217,167,92,.20), transparent 35%), linear-gradient(135deg,#000,#080808 48%,#15120d); }
.bp-hero-chi-siamo { background: radial-gradient(circle at 78% 18%, rgba(217,167,92,.18), transparent 34%), linear-gradient(135deg,#000,#070707 52%,#121212); }
.bp-hero-consulenza { background: radial-gradient(circle at 78% 20%, rgba(217,167,92,.27), transparent 35%), linear-gradient(135deg,#000,#080808 50%,#181008); }
.bp-hero-cosa { background: radial-gradient(circle at 80% 22%, rgba(217,167,92,.25), transparent 36%), linear-gradient(135deg,#000,#090909 48%,#17110a); }

.bp-page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 70px;
    align-items: end;
}
.bp-page-hero h1 {
    max-width: 900px;
    margin: 0 0 24px;
    font-family: var(--bp-font-title);
    font-size: clamp(54px, 6.5vw, 92px);
    line-height: .88;
    letter-spacing: -.045em;
}
.bp-page-hero p {
    max-width: 760px;
    margin: 0;
    color: #c8c8c8;
    font-size: 16px;
    line-height: 1.75;
}
.bp-hero-panel {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(217,167,92,.42);
    border-radius: 24px;
    background: rgba(255,255,255,.055);
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
    backdrop-filter: blur(16px);
}
.bp-hero-panel span,
.bp-page-section .bp-eyebrow,
.bp-page-hero .bp-eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.bp-hero-panel strong {
    display: block;
    margin-bottom: 14px;
    font-family: var(--bp-font-title);
    font-size: 34px;
    line-height: 1.02;
}
.bp-hero-panel p { font-size: 14px; color: #bdbdbd; }
.bp-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
.bp-page-btn,
.bp-page-link {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.bp-page-btn { background: var(--bp-gold); color: #000; border: 1px solid var(--bp-gold); }
.bp-page-link { border: 1px solid rgba(255,255,255,.2); color: #fff; }
.bp-page-btn:hover { background: #fff; border-color: #fff; }
.bp-page-link:hover { border-color: var(--bp-gold); color: var(--bp-gold); }

.bp-page-section {
    padding: 96px 0;
    background: #000;
    color: #fff;
}
.bp-page-section-light { background: #080808; }
.bp-section-heading { margin-bottom: 34px; }
.bp-section-heading h2,
.bp-split-feature h2,
.bp-products-modern h2,
.bp-contact-intro h2 {
    max-width: 860px;
    margin: 0;
    font-family: var(--bp-font-title);
    font-size: clamp(42px, 5vw, 68px);
    line-height: .92;
    letter-spacing: -.035em;
}
.bp-section-heading p,
.bp-split-feature p,
.bp-contact-intro p {
    max-width: 700px;
    margin: 18px 0 0;
    color: #b9b9b9;
    font-size: 15px;
    line-height: 1.75;
}

.bp-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}
.bp-timeline-grid article,
.bp-training-grid article,
.bp-about-layout article,
.bp-case-showcase article,
.bp-editorial-grid article,
.bp-competence-modern-card,
.bp-product-feature,
.book-card,
.research-card,
.bp-form-shell {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.03);
}
.bp-timeline-grid article {
    min-height: 330px;
    padding: 34px;
    border-top: 0;
    border-left: 0;
}
.bp-timeline-grid span,
.bp-training-grid span,
.bp-about-layout span,
.bp-competence-modern-card > span,
.bp-editorial-grid span,
.bp-publication-layout article > span {
    display: block;
    margin-bottom: 18px;
    color: var(--bp-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.bp-timeline-grid h3,
.bp-training-grid h2,
.bp-about-layout h2,
.bp-case-showcase h2,
.bp-editorial-grid h2,
.bp-competence-modern-card h2,
.bp-product-feature h3,
.bp-publication-layout h2,
.bp-form-shell h2 {
    margin: 0 0 14px;
    color: #fff;
    font-family: var(--bp-font-title);
    font-size: 32px;
    line-height: 1.02;
}
.bp-timeline-grid p,
.bp-training-grid p,
.bp-about-layout p,
.bp-case-showcase p,
.bp-editorial-grid p,
.bp-competence-modern-card p,
.bp-competence-modern-card li,
.bp-product-feature p,
.bp-publication-layout p,
.bp-form-shell p,
.bp-check-list p {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.7;
}
.bp-split-feature {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}
.bp-check-list { display: grid; gap: 12px; }
.bp-check-list p {
    margin: 0;
    padding: 18px 20px;
    border: 1px solid rgba(217,167,92,.25);
    border-radius: 14px;
    background: rgba(217,167,92,.055);
    color: #e5e5e5;
}

.bp-performance-deck {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.bp-performance-deck article {
    min-height: 235px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(255,255,255,.035);
}
.bp-performance-deck article.is-large { grid-column: span 2; background: rgba(217,167,92,.09); border-color: rgba(217,167,92,.45); }
.bp-performance-deck strong {
    display: block;
    margin-bottom: 18px;
    color: var(--bp-gold);
    font-family: var(--bp-font-title);
    font-size: clamp(48px, 6vw, 86px);
    line-height: .85;
}
.bp-performance-deck p { margin: 0; color: #cfcfcf; font-size: 14px; line-height: 1.6; }

.bp-case-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.bp-case-showcase article { padding: 38px; border-radius: 22px; }
.bp-case-showcase small,
.bp-product-feature small {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.bp-case-showcase b {
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 14px;
    border: 1px solid var(--bp-gold);
    border-radius: 999px;
    color: var(--bp-gold);
    font-size: 12px;
}

.bp-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.bp-editorial-grid article { min-height: 290px; padding: 32px; border-radius: 22px; }
.bp-editorial-grid .is-featured { grid-column: span 2; background: rgba(217,167,92,.08); border-color: rgba(217,167,92,.4); }

.bp-training-grid,
.bp-about-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.bp-training-grid article,
.bp-about-layout article { min-height: 300px; padding: 30px; border-radius: 22px; }

.bp-competence-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.bp-competence-modern-card {
    scroll-margin-top: 130px;
    padding: 38px;
    border-radius: 26px;
}
.bp-competence-modern-card.is-wide { grid-column: 1 / -1; }
.bp-competence-modern-card em {
    display: block;
    margin: 10px 0 18px;
    color: var(--bp-gold);
    font-family: var(--bp-font-title);
    font-size: 24px;
    line-height: 1.2;
}
.bp-competence-modern-card ul { display: grid; gap: 8px; margin: 22px 0 0; padding-left: 18px; }
.bp-mini-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.bp-mini-service-grid p {
    margin: 0;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
}
.bp-mini-service-grid strong { display: block; margin-bottom: 8px; color: #fff; }
.bp-products-modern {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 22px;
    align-items: stretch;
}
.bp-product-feature { padding: 30px; border-radius: 24px; }
#emailgenius.bp-product-feature { background: rgba(217,167,92,.08); border-color: rgba(217,167,92,.42); }

.bp-publication-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.book-card,
.research-card { padding: 36px; border-radius: 24px; }
.research-card { grid-column: 1 / -1; background: rgba(217,167,92,.07); border-color: rgba(217,167,92,.38); }
.research-card b {
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 14px;
    border: 1px solid var(--bp-gold);
    border-radius: 999px;
    color: var(--bp-gold);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bp-contact-layout-new {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: start;
}
.bp-form-shell {
    padding: 38px;
    border-radius: 26px;
    background: rgba(217,167,92,.06);
    border-color: rgba(217,167,92,.35);
}

@media (max-width: 1100px) {
    .bp-page-hero-grid,
    .bp-split-feature,
    .bp-products-modern,
    .bp-contact-layout-new { grid-template-columns: 1fr; gap: 34px; }
    .bp-timeline-grid,
    .bp-training-grid,
    .bp-about-layout,
    .bp-performance-deck { grid-template-columns: repeat(2, 1fr); }
    .bp-mini-service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
    .bp-page-hero { padding: 138px 0 70px; }
    .bp-page-hero h1 { font-size: 48px; }
    .bp-page-section { padding: 66px 0; }
    .bp-timeline-grid,
    .bp-training-grid,
    .bp-about-layout,
    .bp-performance-deck,
    .bp-case-showcase,
    .bp-editorial-grid,
    .bp-competence-modern-grid,
    .bp-publication-layout,
    .bp-mini-service-grid { grid-template-columns: 1fr; }
    .bp-performance-deck article.is-large,
    .bp-editorial-grid .is-featured,
    .bp-competence-modern-card.is-wide,
    .research-card { grid-column: auto; }
    .bp-hero-panel,
    .bp-timeline-grid article,
    .bp-training-grid article,
    .bp-about-layout article,
    .bp-case-showcase article,
    .bp-editorial-grid article,
    .bp-competence-modern-card,
    .book-card,
    .research-card,
    .bp-form-shell { padding: 26px; }
}

/* === BP INTERNAL PAGES POLISH v1.3 === */
.bp-page-hero.bp-hero-compact {
    padding: 150px 0 86px;
    min-height: auto;
}
.bp-page-hero.bp-hero-compact::before { opacity: .18; background-size: 84px 84px; }
.bp-page-hero.bp-hero-compact::after { width: 340px; height: 340px; right: -150px; bottom: -170px; opacity: .7; }
.bp-page-hero-grid { grid-template-columns: minmax(0, 1.18fr) minmax(280px, .55fr); gap: 58px; align-items: center; }
.bp-page-hero h1 {
    max-width: 780px;
    font-size: clamp(42px, 5.1vw, 74px);
    line-height: .94;
    letter-spacing: -.035em;
    margin-bottom: 20px;
}
.bp-page-hero p { max-width: 680px; font-size: 15px; line-height: 1.7; }
.bp-hero-panel { border-radius: 22px; }
.bp-hero-panel-slim { padding: 28px; max-width: 430px; justify-self: end; }
.bp-hero-panel strong { font-size: clamp(25px, 2.2vw, 31px); line-height: 1.08; }
.bp-hero-panel p { line-height: 1.65; }
.bp-page-section { padding: 82px 0; }
.bp-section-heading { margin-bottom: 42px; }
.bp-section-heading h2,
.bp-split-feature h2,
.bp-products-modern h2,
.bp-contact-intro h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1; }
.bp-page-section .bp-eyebrow,
.bp-page-hero .bp-eyebrow,
.bp-hero-panel span { letter-spacing: .18em; }

/* Metodo */
.bp-method-roadmap .bp-section-heading { max-width: 860px; }
.bp-roadmap-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.bp-roadmap-line::before {
    content: "";
    position: absolute;
    left: 8%; right: 8%; top: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(217,167,92,.1), rgba(217,167,92,.8), rgba(217,167,92,.1));
}
.bp-roadmap-line article {
    position: relative;
    padding: 86px 26px 30px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}
.bp-roadmap-line span {
    position: absolute;
    left: 24px; top: 22px;
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border: 1px solid rgba(217,167,92,.55);
    border-radius: 50%;
    background: #090909;
    color: var(--bp-gold);
    font-size: 11px; font-weight: 800;
}
.bp-roadmap-line h3,
.case-lab-stack h3,
.about-story-cards h3,
.bp-ideas-magazine h3 { margin: 0 0 10px; font-family: var(--bp-font-title); font-size: 28px; line-height: 1.05; }
.bp-roadmap-line p,
.case-lab-stack p,
.about-story-cards p,
.bp-ideas-magazine p,
.bp-training-paths p { margin: 0; color: #bdbdbd; font-size: 14px; line-height: 1.65; }
.bp-split-feature-soft { padding: 42px; border: 1px solid rgba(255,255,255,.11); border-radius: 28px; background: rgba(255,255,255,.025); }

/* Performance nuova */
.bp-performance-board-section { background: radial-gradient(circle at 80% 10%, rgba(217,167,92,.12), transparent 34%), #000; }
.bp-performance-board-head { display: grid; grid-template-columns: .72fr 1fr; gap: 52px; align-items: end; margin-bottom: 36px; }
.bp-performance-board-head .bp-eyebrow { grid-column: 1 / -1; margin-bottom: -22px; }
.bp-performance-board-head h2 { margin: 0; font-family: var(--bp-font-title); color: #fff; font-size: clamp(38px, 4.2vw, 62px); line-height: .98; letter-spacing: -.03em; }
.bp-performance-board-head p { margin: 0; color: #bdbdbd; font-size: 15px; line-height: 1.7; max-width: 720px; }
.bp-performance-board-main { display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; align-items: stretch; }
.bp-performance-hero-metric {
    min-height: 440px;
    padding: 42px;
    border: 1px solid rgba(217,167,92,.45);
    border-radius: 30px;
    background: linear-gradient(150deg, rgba(217,167,92,.15), rgba(255,255,255,.025) 56%), #080808;
    display: flex; flex-direction: column; justify-content: space-between;
}
.bp-performance-hero-metric span,
.bp-performance-product-strip span,
.bp-ideas-magazine span,
.pub-book span,
.pub-research span,
.case-lab-feature small,
.case-lab-stack span,
.bp-training-paths article > span,
.about-story-cards span { color: var(--bp-gold); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.bp-performance-hero-metric strong { display: block; color: var(--bp-gold); font-family: var(--bp-font-title); font-size: clamp(76px, 9vw, 126px); line-height: .82; letter-spacing: -.04em; }
.bp-performance-hero-metric p { margin: 22px 0 0; color: #efefef; font-size: 18px; line-height: 1.55; max-width: 520px; }
.bp-performance-hero-metric b { color: #fff; }
.bp-performance-list { display: grid; gap: 14px; }
.bp-performance-list article {
    display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: center;
    padding: 22px 26px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 22px;
    background: rgba(255,255,255,.026);
}
.bp-performance-list strong { color: var(--bp-gold); font-family: var(--bp-font-title); font-size: 34px; line-height: .88; letter-spacing: -.03em; }
.bp-performance-list p { margin: 0; color: #d0d0d0; font-size: 14px; line-height: 1.6; }
.bp-performance-product-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 24px; border: 1px solid rgba(255,255,255,.1); border-radius: 26px; overflow: hidden; background: rgba(255,255,255,.1); }
.bp-performance-product-strip div { padding: 26px; background: #080808; }
.bp-performance-product-strip strong { display: block; margin: 14px 0 10px; color: var(--bp-gold); font-family: var(--bp-font-title); font-size: 54px; line-height: .9; }
.bp-performance-product-strip p { margin: 0; color: #bfbfbf; font-size: 13px; line-height: 1.55; }

/* Cosa facciamo */
.bp-competence-upgraded { grid-template-columns: 1.08fr .92fr; align-items: stretch; }
.bp-competence-upgraded .bp-competence-modern-card { padding: 32px; min-height: auto; }
.bp-competence-upgraded .bp-competence-modern-card.is-feature { background: linear-gradient(145deg, rgba(217,167,92,.12), rgba(255,255,255,.025)); border-color: rgba(217,167,92,.36); }
.bp-competence-upgraded .bp-competence-modern-card h2 { font-size: clamp(28px, 3vw, 42px); }
.bp-competence-upgraded .bp-competence-modern-card em { font-size: 21px; }
.bp-mini-service-grid { grid-template-columns: repeat(4, 1fr); }
.bp-mini-service-grid p { padding: 18px; }
.bp-products-upgraded { align-items: stretch; }
.bp-products-upgraded > div { padding: 30px 0; }
.bp-product-feature h3 { font-size: 31px; }

/* Casi */
.bp-case-lab { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: stretch; }
.case-lab-feature {
    padding: 42px;
    border: 1px solid rgba(217,167,92,.45);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(217,167,92,.13), rgba(255,255,255,.025));
}
.case-lab-feature h2 { margin: 22px 0 18px; font-family: var(--bp-font-title); font-size: clamp(44px, 5vw, 70px); line-height: .95; }
.case-lab-feature p { color: #cfcfcf; font-size: 15px; line-height: 1.7; }
.case-lab-feature strong { display: inline-flex; margin-top: 32px; padding: 14px 18px; border-radius: 999px; background: var(--bp-gold); color: #000; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.case-lab-stack { display: grid; gap: 16px; }
.case-lab-stack article { padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.03); }
.case-lab-stack b { display: inline-block; margin-top: 16px; color: var(--bp-gold); font-size: 13px; }

/* Idee */
.bp-ideas-magazine { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.bp-ideas-magazine article { padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.03); }
.bp-ideas-magazine .idea-cover { grid-row: span 2; min-height: 500px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(150deg, rgba(217,167,92,.15), rgba(255,255,255,.025)); border-color: rgba(217,167,92,.38); }
.bp-ideas-magazine h2 { margin: 16px 0; font-family: var(--bp-font-title); font-size: clamp(38px, 4vw, 58px); line-height: .98; }
.bp-ideas-magazine h3 { font-size: 27px; margin-top: 16px; }

/* Formazione */
.bp-training-paths { max-width: 1120px; }
.bp-training-paths article { display: grid; grid-template-columns: 86px 1fr; gap: 28px; align-items: start; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.12); }
.bp-training-paths article:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.bp-training-paths article > span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(217,167,92,.55); border-radius: 50%; }
.bp-training-paths h2 { margin: 0 0 8px; font-family: var(--bp-font-title); font-size: clamp(30px, 3vw, 44px); line-height: 1; }

/* Pubblicazioni */
.bp-publication-shelf { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pub-book { display: grid; grid-template-columns: 116px 1fr; gap: 26px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: rgba(255,255,255,.03); }
.pub-cover { min-height: 154px; border: 1px solid rgba(217,167,92,.48); border-radius: 16px; display: grid; place-items: center; color: var(--bp-gold); font-family: var(--bp-font-title); font-size: 42px; background: linear-gradient(150deg, rgba(217,167,92,.16), rgba(255,255,255,.03)); }
.pub-book h2,
.pub-research h2 { margin: 12px 0; font-family: var(--bp-font-title); font-size: clamp(30px, 3vw, 44px); line-height: 1; }
.pub-book p,
.pub-research p { color: #bdbdbd; font-size: 14px; line-height: 1.7; }
.pub-research { grid-column: 1 / -1; padding: 34px; border: 1px solid rgba(217,167,92,.38); border-radius: 26px; background: linear-gradient(130deg, rgba(217,167,92,.1), rgba(255,255,255,.02)); }
.pub-research b { display: inline-flex; margin-top: 12px; padding: 10px 14px; border: 1px solid var(--bp-gold); border-radius: 999px; color: var(--bp-gold); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

/* Chi siamo */
.bp-about-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: start; }
.about-story-main { position: sticky; top: 120px; padding: 36px; border: 1px solid rgba(217,167,92,.34); border-radius: 28px; background: linear-gradient(150deg, rgba(217,167,92,.11), rgba(255,255,255,.025)); }
.about-story-main h2 { margin: 0 0 18px; font-family: var(--bp-font-title); font-size: clamp(38px, 4vw, 56px); line-height: .98; }
.about-story-main p { color: #c8c8c8; line-height: 1.7; }
.about-story-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-story-cards article { padding: 26px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.03); }

/* Consulenza */
.bp-contact-polished .bp-form-shell { box-shadow: 0 30px 80px rgba(0,0,0,.32); }
.bp-contact-polished .bp-check-list p { background: rgba(255,255,255,.025); border-color: rgba(255,255,255,.11); }

@media (max-width: 1100px) {
    .bp-page-hero-grid,
    .bp-performance-board-head,
    .bp-performance-board-main,
    .bp-case-lab,
    .bp-about-story { grid-template-columns: 1fr; }
    .bp-hero-panel-slim { justify-self: start; max-width: 100%; }
    .bp-roadmap-line,
    .bp-performance-product-strip,
    .bp-ideas-magazine,
    .bp-competence-upgraded { grid-template-columns: repeat(2, 1fr); }
    .bp-ideas-magazine .idea-cover { grid-column: 1 / -1; min-height: 360px; }
}
@media (max-width: 800px) {
    .bp-page-hero.bp-hero-compact { padding: 128px 0 64px; }
    .bp-page-hero h1 { font-size: clamp(39px, 12vw, 48px); }
    .bp-page-section { padding: 60px 0; }
    .bp-roadmap-line,
    .bp-performance-product-strip,
    .bp-ideas-magazine,
    .bp-competence-upgraded,
    .bp-publication-shelf,
    .about-story-cards { grid-template-columns: 1fr; }
    .bp-roadmap-line::before { display: none; }
    .bp-performance-list article { grid-template-columns: 1fr; gap: 10px; }
    .bp-performance-hero-metric { min-height: 330px; padding: 28px; }
    .pub-book { grid-template-columns: 1fr; }
    .pub-cover { width: 112px; }
    .bp-training-paths article { grid-template-columns: 1fr; gap: 16px; }
    .about-story-main { position: relative; top: auto; }
}

/* === Prenota Consulenza - Form Page === */

.bp-consultation-page {
    background: #000;
    color: #fff;
}

.bp-consultation-hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(217, 167, 92, .18), transparent 34%),
        linear-gradient(135deg, #000 0%, #070707 48%, #15100a 100%);
}

.bp-consultation-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
    pointer-events: none;
}

.bp-consultation-hero::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -160px;
    bottom: -180px;
    border: 1px solid rgba(217, 167, 92, .28);
    border-radius: 50%;
    pointer-events: none;
}

.bp-consultation-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    gap: 72px;
    align-items: center;
}

.bp-consultation-copy h1,
.bp-consultation-copy .bp-consultation-title {
    max-width: 760px;
    margin: 0 0 24px;
    color: #fff;
    font-family: var(--bp-font-title);
    font-size: clamp(46px, 5vw, 76px);
    font-weight: 700;
    line-height: .94;
    letter-spacing: -.04em;
}

.bp-home-consultation {
    min-height: auto;
    padding: 100px 0;
}

.bp-consultation-copy p {
    max-width: 620px;
    margin: 0;
    color: #c8c8c8;
    font-size: 16px;
    line-height: 1.75;
}

.bp-consultation-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.bp-consultation-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid rgba(217, 167, 92, .32);
    border-radius: 999px;
    background: rgba(217, 167, 92, .06);
    color: #e4e4e4;
    font-size: 12px;
    font-weight: 600;
}

.bp-consultation-form-card {
    position: relative;
    padding: 38px;
    border: 1px solid rgba(217, 167, 92, .42);
    border-radius: 28px;
    background:
        linear-gradient(150deg, rgba(217, 167, 92, .12), rgba(255,255,255,.035) 58%),
        rgba(8,8,8,.86);
    box-shadow: 0 34px 90px rgba(0,0,0,.42);
    backdrop-filter: blur(16px);
}

.bp-consultation-form-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 22px;
    pointer-events: none;
}

.bp-form-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.bp-form-heading span {
    display: block;
    margin-bottom: 12px;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.bp-form-heading h2 {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--bp-font-title);
    font-size: 38px;
    line-height: 1;
    letter-spacing: -.025em;
}

.bp-form-heading p {
    max-width: 420px;
    margin: 0;
    color: #b9b9b9;
    font-size: 14px;
    line-height: 1.65;
}

.bp-cf7-form-wrap {
    position: relative;
    z-index: 1;
}

/* Contact Form 7 */
.bp-cf7-form-wrap form {
    display: grid;
    gap: 16px;
    margin: 0;
}

.bp-cf7-form-wrap label {
    display: grid;
    gap: 8px;
    margin: 0;
    color: #d7d7d7;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.bp-cf7-form-wrap input[type="text"],
.bp-cf7-form-wrap input[type="email"],
.bp-cf7-form-wrap textarea {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 14px;
    outline: none;
    background: rgba(0,0,0,.36);
    color: #fff;
    font-family: var(--bp-font-body);
    font-size: 14px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.bp-cf7-form-wrap textarea {
    min-height: 128px;
    resize: vertical;
}

.bp-cf7-form-wrap input[type="text"]:focus,
.bp-cf7-form-wrap input[type="email"]:focus,
.bp-cf7-form-wrap textarea:focus {
    border-color: rgba(217, 167, 92, .72);
    background: rgba(0,0,0,.5);
    box-shadow: 0 0 0 4px rgba(217, 167, 92, .08);
}

.bp-cf7-form-wrap input::placeholder,
.bp-cf7-form-wrap textarea::placeholder {
    color: rgba(255,255,255,.42);
}

.bp-cf7-form-wrap input[type="submit"],
.bp-cf7-form-wrap .wpcf7-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 4px;
    border: 1px solid var(--bp-gold);
    border-radius: 999px;
    background: var(--bp-gold);
    color: #000;
    font-family: var(--bp-font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.bp-cf7-form-wrap input[type="submit"]:hover,
.bp-cf7-form-wrap .wpcf7-submit:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
    transform: translateY(-1px);
}

.bp-cf7-form-wrap .wpcf7-spinner {
    margin: 10px auto 0;
    display: block;
}

.bp-cf7-form-wrap .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #ffb3b3;
    font-size: 12px;
}

.bp-cf7-form-wrap .wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 13px 15px !important;
    border-radius: 14px;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
}

.bp-cf7-form-wrap .wpcf7 form.invalid .wpcf7-response-output,
.bp-cf7-form-wrap .wpcf7 form.unaccepted .wpcf7-response-output,
.bp-cf7-form-wrap .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: rgba(255, 179, 179, .55) !important;
    background: rgba(255, 80, 80, .08);
}

.bp-cf7-form-wrap .wpcf7 form.sent .wpcf7-response-output {
    border-color: rgba(217, 167, 92, .55) !important;
    background: rgba(217, 167, 92, .1);
}

/* Responsive */
@media (max-width: 1100px) {
    .bp-consultation-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .bp-consultation-form-card {
        max-width: 680px;
    }
}

@media (max-width: 767px) {
    .bp-consultation-hero {
        min-height: auto;
        padding: 128px 0 64px;
    }

    .bp-consultation-copy h1,
    .bp-consultation-copy .bp-consultation-title {
        font-size: clamp(40px, 12vw, 52px);
    }

    .bp-consultation-copy p {
        font-size: 15px;
    }

    .bp-consultation-form-card {
        padding: 26px;
        border-radius: 24px;
    }

    .bp-form-heading h2 {
        font-size: 32px;
    }

    .bp-consultation-points {
        gap: 8px;
    }

    .bp-consultation-points span {
        min-height: 34px;
        font-size: 11px;
    }
}

/* === Consultation page safety overrides v1.4.1 === */
.bp-consultation-page .wpcf7 p {
    margin: 0;
}

.bp-consultation-page .wpcf7-form-control-wrap {
    display: block;
}

.bp-consultation-page br {
    display: none;
}

/* === Pre-header language selector + header mobile fix === */

.bp-pre-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 120;
    width: 100%;
    height: 34px;
    background: rgba(0, 0, 0, .72);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
}

.bp-pre-header-inner {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bp-pre-header-lang {
    position: relative;
    height: 34px;
    display: flex;
    align-items: center;
}

.bp-pre-lang-current {
    height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .86);
    font-family: var(--bp-font-body);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
}

.bp-lang-flag {
    font-size: 15px;
    line-height: 1;
}

.bp-lang-chevron {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1;
    transform: translateY(-1px);
}

.bp-pre-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    padding: 8px;
    border: 1px solid rgba(217, 167, 92, .35);
    border-radius: 14px;
    background: rgba(5, 5, 5, .96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: .2s ease;
}

.bp-pre-header-lang:hover .bp-pre-lang-dropdown,
.bp-pre-header-lang:focus-within .bp-pre-lang-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.bp-pre-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 9px;
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.bp-pre-lang-dropdown a:hover,
.bp-pre-lang-dropdown a.is-active {
    background: rgba(217, 167, 92, .1);
    color: var(--bp-gold);
}

/* Sposta l'header sotto il pre-header */
.bp-site-header {
    top: 34px;
}

/* Neutralizza eventuali vecchi selettori lingua */
.bp-language-switcher,
.bp-mobile-language-switcher {
    display: none !important;
}

/* Header desktop */
.bp-header-inner {
    grid-template-columns: 130px minmax(0, 1fr) 190px;
}

.bp-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bp-header-cta img,
.bp-mobile-cta img {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    display: inline-block;
}

/* Desktop medio */
@media (max-width: 1360px) {
    .bp-header-inner {
        grid-template-columns: 112px minmax(0, 1fr) 178px;
        gap: 16px;
    }

    .bp-header-nav ul {
        gap: 16px;
    }

    .bp-header-nav a {
        font-size: 9px;
    }

    .bp-header-cta {
        width: 178px;
        font-size: 8.5px;
    }
}

/* Mobile/tablet */
@media (max-width: 1100px) {
    .bp-pre-header {
        height: 32px;
    }

    .bp-pre-header-inner {
        height: 32px;
    }

    .bp-pre-header-lang,
    .bp-pre-lang-current {
        height: 32px;
    }

    .bp-pre-lang-current {
        font-size: 12px;
    }

    .bp-site-header {
        top: 32px;
        padding: 18px 0;
    }

    .bp-header-inner {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        width: min(1200px, calc(100% - 48px));
    }

    .bp-header-nav,
    .bp-header-actions,
    .bp-header-cta {
        display: none !important;
    }

    .bp-header-logo {
        flex: 0 0 auto;
    }

    .bp-header-logo img {
        width: 112px;
        max-width: 112px;
    }

    .bp-mobile-toggle {
        display: inline-flex !important;
        flex: 0 0 54px;
        width: 54px;
        height: 54px;
        margin-left: auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: 1px solid var(--bp-gold);
        border-radius: 50%;
        background: rgba(0, 0, 0, .18);
        cursor: pointer;
    }

    .bp-mobile-toggle span {
        display: block;
        width: 21px;
        height: 2px;
        margin: 3px 0;
        background: var(--bp-gold);
    }

    .bp-mobile-menu {
        justify-content: flex-start;
        padding: 104px 32px 34px;
    }

    .bp-mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        margin-top: 24px;
        padding: 0 22px;
        border: 1px solid var(--bp-gold);
        border-radius: 999px;
        color: var(--bp-gold) !important;
        font-family: var(--bp-font-body) !important;
        font-size: 12px !important;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase;
        text-decoration: none;
    }
}

@media (max-width: 767px) {
    .bp-pre-header {
        background: rgba(0, 0, 0, .82);
    }

    .bp-pre-header-inner {
        width: min(100% - 32px, 1200px);
    }

    .bp-header-inner {
        width: min(100% - 32px, 1200px);
    }

    .bp-header-logo img {
        width: 104px;
        max-width: 104px;
    }

    .bp-mobile-toggle {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .bp-mobile-toggle span {
        width: 20px;
    }

    .bp-pre-lang-dropdown {
        right: 0;
    }
}

/* === Fix dropdown lingua: evita scomparsa al passaggio mouse === */

.bp-pre-header,
.bp-pre-header-inner,
.bp-pre-header-lang {
    overflow: visible !important;
}

.bp-pre-header-lang {
    position: relative;
}

/* Ponte invisibile tra bottone e dropdown */
.bp-pre-header-lang::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 170px;
    height: 14px;
    background: transparent;
    pointer-events: auto;
}

.bp-pre-lang-dropdown {
    top: calc(100% + 8px);
    z-index: 9999;
}

/* Mantiene aperto il dropdown anche quando il mouse passa sul ponte */
.bp-pre-header-lang:hover .bp-pre-lang-dropdown,
.bp-pre-header-lang:focus-within .bp-pre-lang-dropdown,
.bp-pre-lang-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
