/**
 * BESTNET ISP — Premium Enterprise Design System v5
 * Brand palette: logo crimson (#9B1F2E) + accent (#D4364A)
 * Mesh-inspired surfaces · Sora + Inter
 */

/* ─── Design tokens ─── */
:root {
    /* Brand (overridden by shell.php from config) */
    --bn-primary: #9b1f2e;
    --bn-accent: #d4364a;
    --bn-primary-rgb: 155, 31, 46;
    --bn-accent-rgb: 212, 54, 74;

    /* Derived brand scale */
    --bn-primary-dark: color-mix(in srgb, var(--bn-primary) 78%, #000);
    --bn-primary-light: color-mix(in srgb, var(--bn-primary) 65%, var(--bn-accent));
    --bn-primary-soft: color-mix(in srgb, var(--bn-primary) 9%, #fff);
    --bn-accent-soft: color-mix(in srgb, var(--bn-accent) 10%, #fff);

    /* Dark surfaces (crimson-tinted) */
    --bn-dark: #0a0607;
    --bn-dark-2: #140a0c;
    --bn-dark-3: #1f1014;

    /* Neutrals */
    --bn-surface: #ffffff;
    --bn-surface-alt: #f9f4f5;
    --bn-surface-tint: #f3e8eb;
    --bn-surface-warm: #faf7f8;
    --bn-surface-elevated: #ffffff;
    --bn-text: #1a1012;
    --bn-text-muted: #6b5a5e;
    --bn-text-subtle: #9a888c;
    --bn-border: rgba(var(--bn-primary-rgb), 0.1);
    --bn-border-strong: rgba(var(--bn-primary-rgb), 0.18);

    /* Glass */
    --bn-glass: rgba(255, 255, 255, 0.72);
    --bn-glass-dark: rgba(5, 21, 37, 0.72);
    --bn-glass-border: rgba(255, 255, 255, 0.5);

    /* 8px spacing system */
    --bn-space-1: 0.5rem;   /* 8px */
    --bn-space-2: 1rem;     /* 16px */
    --bn-space-3: 1.5rem;   /* 24px */
    --bn-space-4: 2rem;     /* 32px */
    --bn-space-5: 2.5rem;   /* 40px */
    --bn-space-6: 3rem;     /* 48px */
    --bn-space-8: 4rem;     /* 64px */
    --bn-space-10: 5rem;    /* 80px */
    --bn-space-12: 6rem;    /* 96px */
    --bn-space-16: 8rem;    /* 128px */
    --bn-space-20: 10rem;   /* 160px */

    /* Legacy aliases */
    --bn-space-xs: var(--bn-space-1);
    --bn-space-sm: var(--bn-space-2);
    --bn-space-md: var(--bn-space-3);
    --bn-space-lg: var(--bn-space-4);
    --bn-space-xl: var(--bn-space-6);
    --bn-space-2xl: var(--bn-space-10);
    --bn-space-3xl: var(--bn-space-12);

    /* Layout */
    --bn-trust-h: 0px;
    --bn-header-h: 88px;
    --bn-container: 1280px;
    --bn-container-narrow: 760px;

    /* Typography */
    --bn-font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --bn-display: 'Sora', var(--bn-font);
    --bn-text-xs: 0.75rem;
    --bn-text-sm: 0.875rem;
    --bn-text-base: 1rem;
    --bn-text-lg: 1.125rem;
    --bn-text-xl: 1.25rem;
    --bn-text-2xl: clamp(1.5rem, 2.8vw, 2rem);
    --bn-text-3xl: clamp(2rem, 3.8vw, 2.75rem);
    --bn-text-hero: clamp(2.75rem, 5.5vw, 4.25rem);

    /* Radius */
    --bn-radius-xs: 6px;
    --bn-radius-sm: 10px;
    --bn-radius: 14px;
    --bn-radius-lg: 20px;
    --bn-radius-xl: 28px;
    --bn-radius-full: 9999px;

    /* Elevation */
    --bn-shadow-xs: 0 1px 2px rgba(26, 10, 14, 0.04);
    --bn-shadow: 0 4px 20px rgba(var(--bn-primary-rgb), 0.07);
    --bn-shadow-md: 0 12px 40px rgba(var(--bn-primary-rgb), 0.1);
    --bn-shadow-lg: 0 24px 64px rgba(var(--bn-primary-rgb), 0.14);
    --bn-shadow-glow: 0 0 0 1px rgba(var(--bn-accent-rgb), 0.18), 0 8px 32px rgba(var(--bn-primary-rgb), 0.2);
    --bn-shadow-card: 0 2px 4px rgba(var(--bn-primary-rgb), 0.04), 0 16px 40px rgba(var(--bn-primary-rgb), 0.08);

    /* Motion */
    --bn-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --bn-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --bn-transition: 0.28s var(--bn-ease);
    --bn-focus-ring: 0 0 0 3px color-mix(in srgb, var(--bn-accent) 35%, transparent);
}

/* ─── Base ─── */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.bn-site {
    margin: 0;
    font-family: var(--bn-font);
    font-size: var(--bn-text-base);
    font-weight: 400;
    line-height: 1.65;
    color: var(--bn-text);
    background-color: var(--bn-surface-warm);
    background-image:
        radial-gradient(ellipse 90% 60% at 50% -20%, rgba(var(--bn-primary-rgb), 0.09), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 30%, rgba(var(--bn-primary-rgb), 0.05), transparent 50%),
        radial-gradient(ellipse 45% 35% at 0% 70%, rgba(var(--bn-primary-rgb), 0.06), transparent 45%);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    position: relative;
}
body.bn-site::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%239B1F2E' stroke-opacity='0.06' stroke-width='0.5'%3E%3Cpath d='M0 30 Q15 15 30 30 T60 30'/%3E%3Cpath d='M0 45 Q15 30 30 45 T60 45'/%3E%3Cpath d='M0 15 Q15 0 30 15 T60 15'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
}
body.bn-site > main,
body.bn-site > .bn-trust-bar,
body.bn-site > .bn-expert-cta,
body.bn-site > .bn-footer {
    position: relative;
    z-index: 1;
}

body.bn-site.is-loading { overflow: hidden; }
body.bn-site.is-loaded .bn-page-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--bn-primary);
    text-decoration: none;
    transition: color var(--bn-transition);
}
a:hover { color: var(--bn-primary-dark); }

:focus-visible {
    outline: none;
    box-shadow: var(--bn-focus-ring);
    border-radius: var(--bn-radius-xs);
}

.bn-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: var(--bn-space-2) var(--bn-space-3);
    background: var(--bn-primary);
    color: #fff;
    font-weight: 600;
    border-radius: var(--bn-radius-xs);
}
.bn-skip:focus { left: var(--bn-space-2); top: calc(var(--bn-trust-h) + var(--bn-space-2)); }

.bn-container {
    width: min(var(--bn-container), calc(100% - var(--bn-space-6)));
    margin-inline: auto;
}
.bn-container--narrow { width: min(var(--bn-container-narrow), calc(100% - var(--bn-space-6))); }

/* ─── Page loader ─── */
.bn-page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--bn-dark);
    transition: opacity 0.45s var(--bn-ease-out), visibility 0.45s;
}
.bn-page-loader__inner { text-align: center; }
.bn-page-loader__mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 auto var(--bn-space-3);
    border-radius: var(--bn-radius-sm);
    background: linear-gradient(135deg, var(--bn-primary), var(--bn-accent));
    color: #fff;
    font-family: var(--bn-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.04em;
}
.bn-page-loader__bar {
    display: block;
    width: 96px;
    height: 2px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--bn-radius-full);
    overflow: hidden;
}
.bn-page-loader__bar span {
    display: block;
    height: 100%;
    width: 36%;
    background: var(--bn-accent);
    border-radius: var(--bn-radius-full);
    animation: bn-loader-bar 1.1s var(--bn-ease) infinite;
}
@keyframes bn-loader-bar {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(380%); }
}

/* ─── Trust bar ─── */
.bn-trust-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--bn-trust-h);
    background: linear-gradient(90deg, var(--bn-dark) 0%, var(--bn-dark-2) 50%, var(--bn-dark) 100%);
    border-bottom: 1px solid rgba(var(--bn-accent-rgb), 0.12);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: transform 0.35s var(--bn-ease-out), opacity 0.35s var(--bn-ease);
}
body.is-trust-hidden .bn-trust-bar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.bn-trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--bn-space-2);
}
.bn-trust-bar__list {
    display: flex;
    align-items: center;
    gap: var(--bn-space-5);
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.bn-trust-bar__list li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}
.bn-trust-bar__list i {
    color: var(--bn-accent);
    font-size: 0.75rem;
    opacity: 0.9;
}
.bn-trust-bar__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.6875rem;
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border-radius: var(--bn-radius-full);
    border: 1px solid rgba(var(--bn-accent-rgb), 0.28);
    background: rgba(var(--bn-primary-rgb), 0.2);
    transition: background var(--bn-transition), border-color var(--bn-transition), transform var(--bn-transition);
}
.bn-trust-bar__phone:hover {
    color: #fff;
    background: rgba(var(--bn-primary-rgb), 0.45);
    border-color: rgba(var(--bn-accent-rgb), 0.45);
    transform: translateY(-1px);
}

/* ─── Typography ─── */
.bn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--bn-space-2);
    font-size: var(--bn-text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bn-accent);
    margin-bottom: var(--bn-space-2);
}
.bn-eyebrow__line {
    width: 24px;
    height: 1px;
    background: var(--bn-accent);
    border-radius: 1px;
    opacity: 0.8;
}
.bn-eyebrow--light { color: var(--bn-accent); }
.bn-eyebrow--light .bn-eyebrow__line { background: var(--bn-accent); }

h1, h2, h3, h4 {
    font-family: var(--bn-display);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 0.6em;
    color: var(--bn-text);
}

.bn-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--bn-space-8);
}
.bn-section-head--left { text-align: left; margin-left: 0; margin-right: auto; }
.bn-section-head__title {
    font-size: var(--bn-text-3xl);
    font-weight: 600;
    letter-spacing: -0.035em;
}
.bn-section-head__subtitle {
    color: var(--bn-text-muted);
    font-size: var(--bn-text-lg);
    line-height: 1.6;
    margin: 0;
    max-width: 54ch;
}
.bn-section-head--center .bn-section-head__subtitle { margin-inline: auto; }

.bn-prose {
    color: var(--bn-text-muted);
    line-height: 1.75;
    font-size: var(--bn-text-base);
}
.bn-prose--lg { font-size: 1.0625rem; }
.bn-prose--sm { font-size: var(--bn-text-sm); }
.bn-prose h2, .bn-prose h3 { color: var(--bn-text); margin-top: 1.75em; }

/* ─── Buttons ─── */
.bn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--bn-font);
    font-size: var(--bn-text-sm);
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: var(--bn-radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform var(--bn-transition),
        box-shadow var(--bn-transition),
        background var(--bn-transition),
        border-color var(--bn-transition),
        color var(--bn-transition);
    text-decoration: none;
    white-space: nowrap;
}
.bn-btn:focus-visible { box-shadow: var(--bn-focus-ring); }

.bn-btn--primary {
    background: var(--bn-primary);
    color: #fff;
    box-shadow: var(--bn-shadow-xs);
}
.bn-btn--primary:hover {
    color: #fff;
    background: var(--bn-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--bn-shadow-glow);
}
.bn-btn--outline {
    background: transparent;
    border-color: var(--bn-border-strong);
    color: var(--bn-text);
}
.bn-btn--outline:hover {
    border-color: var(--bn-primary);
    color: var(--bn-primary);
    background: var(--bn-primary-soft);
}
.bn-btn--outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.bn-btn--outline-light:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}
.bn-btn--glass {
    background: var(--bn-glass);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--bn-glass-border);
    color: var(--bn-text);
    box-shadow: var(--bn-shadow-xs);
}
.bn-btn--glass:hover {
    background: #fff;
    color: var(--bn-primary);
    transform: translateY(-1px);
}
.bn-btn--lg { padding: 0.9rem 1.75rem; font-size: var(--bn-text-base); }
.bn-btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.bn-btn--block { width: 100%; }
.bn-btn:active { transform: translateY(0); }

.bn-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    font-size: var(--bn-text-sm);
    color: var(--bn-primary);
    padding: var(--bn-space-1) 0;
}
.bn-link-arrow i { transition: transform var(--bn-transition); font-size: 0.85em; }
.bn-link-arrow:hover { color: var(--bn-primary-dark); }
.bn-link-arrow:hover i { transform: translateX(4px); }

/* ─── Cards ─── */
.bn-glass-card {
    background: var(--bn-glass);
    backdrop-filter: blur(20px) saturate(1.15);
    -webkit-backdrop-filter: blur(20px) saturate(1.15);
    border: 1px solid var(--bn-glass-border);
    border-radius: var(--bn-radius);
    box-shadow: var(--bn-shadow);
}

.bn-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #ffffff 0%, color-mix(in srgb, var(--bn-primary) 3.5%, #fff) 100%);
    border: 1px solid color-mix(in srgb, var(--bn-primary) 14%, #eadde0);
    border-radius: var(--bn-radius-lg);
    padding: var(--bn-space-4);
    box-shadow: var(--bn-shadow-card);
    transition:
        transform 0.45s var(--bn-ease-out),
        box-shadow 0.45s var(--bn-ease-out),
        border-color var(--bn-transition);
}
.bn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bn-primary), var(--bn-accent));
    opacity: 0;
    transition: opacity 0.35s ease;
}
.bn-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(var(--bn-primary-rgb), 0.06), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
}
.bn-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bn-shadow-md), 0 0 0 1px color-mix(in srgb, var(--bn-primary) 12%, transparent);
    border-color: color-mix(in srgb, var(--bn-primary) 28%, transparent);
}
.bn-card:hover::before,
.bn-card:hover::after { opacity: 1; }
.bn-card__title {
    font-size: var(--bn-text-xl);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.bn-card__title a { color: inherit; text-decoration: none; transition: color var(--bn-transition); }
.bn-card__title a:hover { color: var(--bn-primary); }
.bn-card__text {
    color: var(--bn-text-muted);
    margin: 0 0 var(--bn-space-3);
    font-size: var(--bn-text-sm);
    line-height: 1.6;
}

.bn-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.65rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--bn-radius-full);
    background: var(--bn-primary-soft);
    color: var(--bn-primary);
    border: 1px solid color-mix(in srgb, var(--bn-primary) 15%, transparent);
}

/* ─── Header / Navigation ─── */
.bn-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    transition: box-shadow 0.35s var(--bn-ease), background 0.35s var(--bn-ease);
}
body.is-trust-hidden .bn-header { top: 0; }

.bn-header__shell {
    height: var(--bn-header-h);
    transition: height 0.35s var(--bn-ease-out), background 0.35s var(--bn-ease), box-shadow 0.35s var(--bn-ease), border-color 0.35s var(--bn-ease);
    border-bottom: 1px solid transparent;
}
.bn-header.is-scrolled .bn-header__shell {
    background: rgba(11, 13, 23, 0.94);
    backdrop-filter: blur(20px) saturate(1.35);
    -webkit-backdrop-filter: blur(20px) saturate(1.35);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.bn-header.is-compact .bn-header__shell { height: 64px; }
.bn-header:not(.is-scrolled) .bn-header__shell {
    background: rgba(2, 10, 20, 0.35);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.bn-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--bn-space-4);
    height: 100%;
    width: min(1380px, calc(100% - var(--bn-space-4)));
    margin-inline: auto;
}

.bn-brand-logo--header {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.bn-header .bn-header__logo {
    display: flex;
    align-items: center;
    gap: var(--bn-space-2);
    text-decoration: none;
    color: var(--bn-text);
    flex-shrink: 0;
    min-width: 0;
}
.bn-header .bn-logo__frame {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--bn-radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    flex-shrink: 0;
}
.bn-header.is-scrolled .bn-logo__frame {
    background: var(--bn-primary-soft);
    border-color: color-mix(in srgb, var(--bn-primary) 12%, transparent);
}
.bn-header .bn-logo__mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--bn-radius-sm);
    background: linear-gradient(145deg, var(--bn-primary), color-mix(in srgb, var(--bn-primary) 70%, var(--bn-accent)));
    color: #fff;
    font-family: var(--bn-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.04em;
    box-shadow: 0 4px 16px rgba(var(--bn-primary-rgb), 0.35);
    flex-shrink: 0;
}
.bn-header .bn-logo__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bn-header .bn-logo__name {
    font-family: var(--bn-display);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bn-header .bn-logo__sub {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bn-text-subtle);
}
.bn-header .bn-logo__img { width: 100%; height: 100%; object-fit: contain; }
.bn-header:not(.is-scrolled) .bn-header__logo,
.bn-header:not(.is-scrolled) .bn-logo__name { color: #fff; }
.bn-header:not(.is-scrolled) .bn-logo__sub { color: rgba(255, 255, 255, 0.42); }

.bn-logo {
    display: flex;
    align-items: center;
    gap: var(--bn-space-2);
    text-decoration: none;
    color: var(--bn-text);
}
.bn-logo__mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: var(--bn-radius-xs);
    background: var(--bn-primary);
    color: #fff;
    font-family: var(--bn-display);
    font-weight: 700;
    font-size: 1rem;
}
.bn-logo__text { display: flex; flex-direction: column; gap: 1px; }
.bn-logo__name {
    font-family: var(--bn-display);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.03em;
}
.bn-logo__sub {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bn-text-subtle);
}

.bn-nav { display: flex; justify-content: center; min-width: 0; overflow: visible; }
.bn-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 100%;
    flex-wrap: nowrap;
}
.bn-nav__item { position: relative; }
.bn-nav__link,
.bn-nav__trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.9rem;
    font-family: var(--bn-font);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bn-text-muted);
    border-radius: var(--bn-radius-xs);
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.25s var(--bn-ease), background 0.25s var(--bn-ease);
}
.bn-nav__link::after,
.bn-nav__trigger::after {
    content: '';
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.35rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--bn-primary), var(--bn-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--bn-ease-out);
}
.bn-nav__link:hover,
.bn-nav__trigger:hover,
.bn-nav__item.is-active-branch > .bn-nav__trigger,
.bn-nav__link.is-active {
    color: var(--bn-text);
    background: color-mix(in srgb, var(--bn-primary) 6%, transparent);
}
.bn-nav__link.is-active,
.bn-nav__item.is-active-branch > .bn-nav__trigger { color: var(--bn-primary); font-weight: 600; }
.bn-nav__link.is-active::after,
.bn-nav__item.is-active-branch > .bn-nav__trigger::after { transform: scaleX(1); }
.bn-nav__chevron { font-size: 0.65rem; transition: transform 0.3s var(--bn-ease); opacity: 0.65; }
.bn-nav__item.is-open .bn-nav__chevron { transform: rotate(180deg); }
.bn-header:not(.is-scrolled) .bn-nav__link,
.bn-header:not(.is-scrolled) .bn-nav__trigger { color: rgba(255, 255, 255, 0.9); }
.bn-header:not(.is-scrolled) .bn-nav__link:hover,
.bn-header:not(.is-scrolled) .bn-nav__trigger:hover,
.bn-header:not(.is-scrolled) .bn-nav__item.is-active-branch > .bn-nav__trigger,
.bn-header:not(.is-scrolled) .bn-nav__link.is-active { color: #fff; background: rgba(255, 255, 255, 0.08); }

.bn-header.is-scrolled .bn-nav__link,
.bn-header.is-scrolled .bn-nav__trigger { color: rgba(255, 255, 255, 0.88); }
.bn-header.is-scrolled .bn-nav__link:hover,
.bn-header.is-scrolled .bn-nav__trigger:hover,
.bn-header.is-scrolled .bn-nav__item.is-active-branch > .bn-nav__trigger,
.bn-header.is-scrolled .bn-nav__link.is-active { color: #fff; background: rgba(255, 255, 255, 0.08); }
.bn-header.is-scrolled .bn-nav__link.is-active,
.bn-header.is-scrolled .bn-nav__item.is-active-branch > .bn-nav__trigger { color: var(--bn-accent); }

.bn-nav__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    margin: 0;
    padding: var(--bn-space-1);
    list-style: none;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius);
    box-shadow: var(--bn-shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10;
}
.bn-nav__item.is-open .bn-nav__dropdown { pointer-events: auto; }
.bn-nav__dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bn-space-2);
    padding: 0.6rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--bn-text-muted);
    text-decoration: none;
    border-radius: var(--bn-radius-xs);
    transition: background 0.2s var(--bn-ease), color 0.2s var(--bn-ease);
}
.bn-nav__dropdown-link:hover,
.bn-nav__dropdown-link.is-active { color: var(--bn-primary); background: var(--bn-primary-soft); }
.bn-nav__dropdown-link--parent {
    font-weight: 600;
    color: var(--bn-text);
    border-bottom: 1px solid var(--bn-border);
    margin-bottom: 0.25rem;
}
.bn-nav__dropdown-link--parent i { font-size: 0.75rem; opacity: 0.5; }

.bn-header__actions { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; position: relative; z-index: 3; }
.bn-locale {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.3rem 0.15rem 0.45rem;
    background: var(--bn-surface-alt);
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-full);
}
.bn-header:not(.is-scrolled) .bn-locale { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.12); }
.bn-locale__icon { display: grid; place-items: center; color: var(--bn-primary); font-size: 0.7rem; }
.bn-header:not(.is-scrolled) .bn-locale__icon { color: var(--bn-accent); }
.bn-locale__link {
    display: grid;
    place-items: center;
    min-width: 1.75rem;
    height: 1.5rem;
    padding: 0 0.35rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--bn-text-muted);
    border-radius: var(--bn-radius-full);
    text-decoration: none;
    transition: all 0.25s var(--bn-ease);
}
.bn-locale__link.is-active { background: var(--bn-primary); color: #fff; box-shadow: 0 2px 8px rgba(var(--bn-primary-rgb), 0.3); }
.bn-header:not(.is-scrolled) .bn-locale__link { color: rgba(255, 255, 255, 0.55); }
.bn-header:not(.is-scrolled) .bn-locale__link.is-active { color: #fff; }

.bn-header__tools { display: flex; align-items: center; gap: 0.35rem; }
.bn-header__tool {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: var(--bn-radius-xs);
    color: var(--bn-text-muted);
    border: 1px solid transparent;
    text-decoration: none;
    transition: color 0.25s var(--bn-ease), background 0.25s var(--bn-ease), transform 0.25s var(--bn-ease);
}
.bn-header__tool:hover { color: var(--bn-primary); background: var(--bn-primary-soft); transform: translateY(-1px); }
.bn-header__tool--phone {
    color: var(--bn-accent);
    background: rgba(var(--bn-primary-rgb), 0.12);
    border: 1px solid rgba(var(--bn-primary-rgb), 0.28);
}
.bn-header__tool--phone:hover {
    background: var(--bn-primary);
    color: #fff;
    border-color: var(--bn-primary);
    box-shadow: 0 0 14px rgba(var(--bn-primary-rgb), 0.45);
}
.bn-header:not(.is-scrolled) .bn-header__tool { color: rgba(255, 255, 255, 0.65); }
.bn-header:not(.is-scrolled) .bn-header__tool:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.bn-header:not(.is-scrolled) .bn-header__tool--phone {
    color: var(--bn-accent);
    background: rgba(var(--bn-primary-rgb), 0.14);
    border-color: rgba(var(--bn-primary-rgb), 0.3);
}
.bn-header.is-scrolled .bn-header__tool--phone {
    color: var(--bn-accent);
    background: rgba(var(--bn-primary-rgb), 0.14);
    border-color: rgba(var(--bn-primary-rgb), 0.3);
}
.bn-header.is-scrolled .bn-header__tool--phone:hover {
    color: #fff;
    background: var(--bn-primary);
    border-color: var(--bn-primary);
    box-shadow: 0 0 14px rgba(var(--bn-primary-rgb), 0.45);
}

.bn-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: var(--bn-radius-full);
    background: linear-gradient(135deg, var(--bn-primary), color-mix(in srgb, var(--bn-primary) 75%, var(--bn-accent)));
    border: 1px solid rgba(var(--bn-accent-rgb), 0.25);
    box-shadow: 0 4px 16px rgba(var(--bn-primary-rgb), 0.3);
    transition: transform 0.3s var(--bn-ease-out), box-shadow 0.3s var(--bn-ease);
    white-space: nowrap;
}
.bn-header__cta i { font-size: 0.85em; transition: transform 0.3s var(--bn-ease); }
.bn-header__cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--bn-primary-rgb), 0.42); }
.bn-header__cta:hover i { transform: translateX(3px); }
.bn-header__cta--block { width: 100%; padding-block: 0.85rem; }

.bn-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-sm);
    cursor: pointer;
}
.bn-nav-toggle__lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 18px;
}
.bn-nav-toggle__lines span {
    display: block;
    height: 1.5px;
    background: var(--bn-text);
    border-radius: 1px;
    transition: transform 0.35s var(--bn-ease-out), opacity 0.25s var(--bn-ease);
}
.bn-header:not(.is-scrolled) .bn-nav-toggle { border-color: rgba(255, 255, 255, 0.18); }
.bn-header:not(.is-scrolled) .bn-nav-toggle__lines span { background: #fff; }
.bn-nav-toggle[aria-expanded="true"] .bn-nav-toggle__lines span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.bn-nav-toggle[aria-expanded="true"] .bn-nav-toggle__lines span:nth-child(2) { opacity: 0; }
.bn-nav-toggle[aria-expanded="true"] .bn-nav-toggle__lines span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.bn-drawer {
    position: fixed;
    inset: 0;
    z-index: 1002;
    pointer-events: none;
    visibility: hidden;
}
.bn-drawer.is-open { pointer-events: auto; visibility: visible; }
.bn-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(400px, 92vw);
    height: 100%;
    background: var(--bn-surface);
    transform: translateX(105%);
    display: flex;
    flex-direction: column;
    box-shadow: -16px 0 48px rgba(2, 10, 20, 0.18);
    overflow: hidden;
}
.bn-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(var(--bn-trust-h) + var(--bn-space-3)) var(--bn-space-4) var(--bn-space-3);
    border-bottom: 1px solid var(--bn-border);
    background: linear-gradient(180deg, var(--bn-primary-soft), transparent);
}
.bn-logo--drawer { display: flex; align-items: center; gap: var(--bn-space-2); text-decoration: none; color: var(--bn-text); }
.bn-logo--drawer .bn-logo__mark { width: 34px; height: 34px; font-size: 0.9rem; }
.bn-logo--drawer .bn-logo__name { font-family: var(--bn-display); font-weight: 600; font-size: 0.9rem; }
.bn-drawer__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-xs);
    background: var(--bn-surface);
    color: var(--bn-text);
    cursor: pointer;
}
.bn-drawer__close:hover { background: var(--bn-primary-soft); color: var(--bn-primary); }
.bn-drawer__locale {
    display: flex;
    gap: var(--bn-space-1);
    padding: var(--bn-space-3) var(--bn-space-4);
    border-bottom: 1px solid var(--bn-border);
}
.bn-drawer__locale-link {
    flex: 1;
    text-align: center;
    padding: 0.45rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--bn-text-muted);
    text-decoration: none;
    border-radius: var(--bn-radius-xs);
    border: 1px solid var(--bn-border);
}
.bn-drawer__locale-link.is-active { background: var(--bn-primary); border-color: var(--bn-primary); color: #fff; }
.bn-drawer__nav { flex: 1; overflow-y: auto; padding: var(--bn-space-2) 0; }
.bn-drawer__list { list-style: none; margin: 0; padding: 0 var(--bn-space-2); }
.bn-drawer__link,
.bn-drawer__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--bn-space-3);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--bn-text);
    text-decoration: none;
    border: none;
    background: transparent;
    border-radius: var(--bn-radius-sm);
    cursor: pointer;
    text-align: left;
}
.bn-drawer__link:hover,
.bn-drawer__trigger:hover,
.bn-drawer__link.is-active { background: var(--bn-primary-soft); color: var(--bn-primary); }
.bn-drawer__link i,
.bn-drawer__trigger i { font-size: 0.75rem; color: var(--bn-text-subtle); transition: transform 0.3s var(--bn-ease); }
.bn-drawer__item.is-open .bn-drawer__trigger i { transform: rotate(180deg); }
.bn-drawer__sub { list-style: none; margin: 0; padding: 0 0 var(--bn-space-1) var(--bn-space-3); overflow: hidden; }
.bn-drawer__sub a {
    display: block;
    padding: 0.55rem var(--bn-space-3);
    font-size: 0.875rem;
    color: var(--bn-text-muted);
    text-decoration: none;
    border-radius: var(--bn-radius-xs);
    border-left: 2px solid var(--bn-border);
}
.bn-drawer__sub a:hover { color: var(--bn-primary); border-left-color: var(--bn-accent); background: var(--bn-primary-soft); }
.bn-drawer__footer { padding: var(--bn-space-4); border-top: 1px solid var(--bn-border); background: var(--bn-surface-alt); }
.bn-drawer__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--bn-space-2);
    margin-top: var(--bn-space-3);
    padding: var(--bn-space-2);
    font-weight: 600;
    font-size: var(--bn-text-sm);
    color: var(--bn-primary);
    text-decoration: none;
    border-radius: var(--bn-radius-sm);
    border: 1px solid color-mix(in srgb, var(--bn-primary) 15%, transparent);
    background: #fff;
}
.bn-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 10, 20, 0.55);
    backdrop-filter: blur(6px);
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s var(--bn-ease);
}
.bn-drawer.is-open .bn-drawer__panel { transform: translateX(0); }
.bn-drawer.is-open .bn-drawer__backdrop { opacity: 1; }

/* Header responsive */
@media (max-width: 1320px) {
    .bn-locale { display: none; }
    .bn-nav__link,
    .bn-nav__trigger { padding: 0.5rem 0.7rem; font-size: 0.875rem; }
}
@media (max-width: 1200px) {
    .bn-header__tools { display: none; }
}
@media (max-width: 1100px) {
    .bn-header__inner { grid-template-columns: auto 1fr auto; }
    .bn-nav { display: none; }
    .bn-nav-toggle { display: inline-flex; }
    .bn-header__cta { display: none; }
    .bn-locale { display: none; }
}

/* ─── Hero ─── */
.bn-hero {
    position: relative;
    min-height: calc(100vh - var(--bn-trust-h));
    min-height: calc(100dvh - var(--bn-trust-h));
    display: flex;
    align-items: center;
    padding-top: var(--bn-header-h);
    overflow: hidden;
    background: var(--bn-dark);
    color: #fff;
    isolation: isolate;
}

/* Background layers */
.bn-hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.bn-hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 72% 8%, rgba(var(--bn-accent-rgb), 0.18), transparent 58%),
        radial-gradient(ellipse 45% 40% at 8% 92%, rgba(var(--bn-primary-rgb), 0.22), transparent 52%),
        linear-gradient(165deg, #010810 0%, var(--bn-dark) 38%, var(--bn-dark-2) 100%);
}
.bn-hero__aurora {
    position: absolute;
    inset: -20% -10%;
    background:
        conic-gradient(from 200deg at 60% 40%, transparent 0deg, rgba(var(--bn-accent-rgb), 0.06) 60deg, transparent 120deg, rgba(var(--bn-primary-rgb), 0.05) 200deg, transparent 280deg);
    animation: bn-hero-aurora 18s linear infinite;
    opacity: 0.9;
}
@keyframes bn-hero-aurora {
    to { transform: rotate(360deg); }
}
.bn-hero__fiber-net {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    pointer-events: none;
}
.bn-hero__fiber-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: bn-hero-fiber-draw 4s var(--bn-ease-out) forwards;
}
.bn-hero__fiber-path:nth-child(2) { animation-delay: 0.4s; }
.bn-hero__fiber-path:nth-child(3) { animation-delay: 0.8s; }
.bn-hero__fiber-path:nth-child(4) { animation-delay: 1.2s; }
.bn-hero__fiber-path:nth-child(5) { animation-delay: 1.6s; }
@keyframes bn-hero-fiber-draw {
    to { stroke-dashoffset: 0; }
}
.bn-hero__fiber-dot {
    opacity: 0;
    filter: drop-shadow(0 0 6px var(--bn-accent));
}
.bn-hero__satellite {
    position: absolute;
    top: 12%;
    right: 8%;
    width: 72px;
    height: 72px;
    opacity: 0.85;
    pointer-events: none;
}
.bn-hero__sat-beam {
    transform-origin: 60px 72px;
    animation: bn-hero-beam 2.8s ease-in-out infinite;
}
@keyframes bn-hero-beam {
    0%, 100% { opacity: 0.25; stroke-dashoffset: 0; }
    50% { opacity: 0.7; stroke-dashoffset: -14; }
}
.bn-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 10%, transparent 72%);
}
.bn-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Slide layout */
.bn-hero-swiper { width: 100%; position: relative; z-index: 1; }
.bn-hero__slide {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--bn-space-8);
    align-items: center;
    min-height: calc(100vh - var(--bn-header-h) - var(--bn-trust-h) - var(--bn-space-8));
    padding-block: var(--bn-space-6);
}

/* Content */
.bn-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--bn-space-2);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bn-accent);
    margin-bottom: var(--bn-space-4);
}
.bn-hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bn-accent);
    box-shadow: 0 0 12px var(--bn-accent);
    animation: bn-hero-pulse-dot 2s ease-in-out infinite;
}
@keyframes bn-hero-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}
.bn-hero__title {
    font-family: var(--bn-display);
    font-size: clamp(2.75rem, 5.8vw, 4.5rem);
    font-weight: 600;
    margin: 0 0 0.35em;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #fff;
    max-width: 11ch;
}
.bn-hero__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.1875rem);
    color: rgba(255, 255, 255, 0.62);
    max-width: 46ch;
    margin: 0 0 var(--bn-space-5);
    line-height: 1.55;
    font-weight: 400;
}
.bn-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bn-space-2);
    margin-bottom: var(--bn-space-5);
}
.bn-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-family: var(--bn-font);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: var(--bn-radius-sm);
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s var(--bn-ease-out), box-shadow 0.3s var(--bn-ease), background 0.3s var(--bn-ease), border-color 0.3s var(--bn-ease);
}
.bn-hero__btn--primary {
    background: var(--bn-primary);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(var(--bn-accent-rgb), 0.15), 0 8px 28px rgba(var(--bn-primary-rgb), 0.35);
}
.bn-hero__btn--primary:hover {
    color: #fff;
    background: var(--bn-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(var(--bn-accent-rgb), 0.3), 0 14px 40px rgba(var(--bn-primary-rgb), 0.45);
}
.bn-hero__btn--glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.bn-hero__btn--glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
    transform: translateY(-2px);
}
.bn-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bn-space-2) var(--bn-space-4);
    list-style: none;
    margin: 0;
    padding: 0;
}
.bn-hero__trust li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.48);
}
.bn-hero__trust i { color: var(--bn-accent); font-size: 0.85em; }

/* Illustration */
.bn-hero__visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bn-hero__illustration {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 560 / 480;
    margin-inline: auto;
}
.bn-hero__illu-glow {
    position: absolute;
    inset: 10% 5%;
    background: radial-gradient(ellipse at 50% 50%, rgba(var(--bn-accent-rgb), 0.2), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}
.bn-hero__illu-svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
}
.bn-hero__orbit {
    transform-origin: 280px 240px;
    animation: bn-hero-orbit-spin 40s linear infinite;
}
@keyframes bn-hero-orbit-spin {
    to { transform: rotate(360deg); }
}
.bn-hero__net-link {
    stroke-dasharray: 4 8;
    animation: bn-hero-link-flow 3s linear infinite;
}
@keyframes bn-hero-link-flow {
    to { stroke-dashoffset: -24; }
}
.bn-hero__nodes circle {
    animation: bn-hero-node-pulse 2.5s ease-in-out infinite;
}
.bn-hero__nodes circle:nth-child(2) { animation-delay: 0.4s; }
.bn-hero__nodes circle:nth-child(3) { animation-delay: 0.8s; }
.bn-hero__nodes circle:nth-child(4) { animation-delay: 1.2s; }
.bn-hero__nodes circle:nth-child(5) { animation-delay: 0.6s; }
.bn-hero__nodes circle:nth-child(6) { animation-delay: 1s; }
@keyframes bn-hero-node-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; filter: drop-shadow(0 0 6px var(--bn-accent)); }
}
.bn-hero__trunk-line {
    animation: bn-hero-trunk 4s linear infinite;
}
@keyframes bn-hero-trunk {
    to { stroke-dashoffset: -40; }
}

.bn-hero__cms-frame {
    position: absolute;
    z-index: 2;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 42%;
    padding: 3px;
    border-radius: var(--bn-radius-sm);
    background: linear-gradient(135deg, rgba(var(--bn-accent-rgb), 0.5), rgba(var(--bn-primary-rgb), 0.3));
    box-shadow: var(--bn-shadow-lg);
}
.bn-hero__cms-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--bn-radius-sm) - 2px);
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* Floating UI */
.bn-hero__float {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: var(--bn-space-2);
    padding: 0.65rem 0.9rem;
    background: rgba(5, 21, 37, 0.65);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--bn-radius-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    will-change: transform;
}
.bn-hero__float-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: var(--bn-radius-xs);
    background: rgba(var(--bn-accent-rgb), 0.12);
    color: var(--bn-accent);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.bn-hero__float strong {
    display: block;
    font-family: var(--bn-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.bn-hero__float span {
    display: block;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1px;
}
.bn-hero__float--1 { top: 4%; right: -2%; }
.bn-hero__float--2 { top: 38%; left: -6%; }
.bn-hero__float--3 { bottom: 18%; right: 0; }

/* Stats glass panel */
.bn-hero__stats-glass {
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    padding: var(--bn-space-3) var(--bn-space-4);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--bn-radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.bn-hero__stats-head {
    display: flex;
    align-items: center;
    gap: var(--bn-space-2);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: var(--bn-space-2);
}
.bn-hero__stats-live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bn-accent);
    box-shadow: 0 0 8px var(--bn-accent);
    animation: bn-hero-pulse-dot 1.5s ease-in-out infinite;
}
.bn-hero__stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bn-space-2);
}
.bn-hero__stat { text-align: center; }
.bn-hero__stat-val {
    display: block;
    font-family: var(--bn-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.bn-hero__stat-val::after {
    content: attr(data-suffix);
    font-size: 0.75em;
    color: var(--bn-accent);
}
.bn-hero__stat-label {
    display: block;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Pagination & scroll */
.bn-hero__pagination { bottom: var(--bn-space-6) !important; z-index: 2; }
.bn-hero__pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: #fff;
    opacity: 0.22;
    transition: all 0.35s var(--bn-ease);
}
.bn-hero__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 3px;
    background: var(--bn-accent);
}
.bn-hero__scroll {
    position: absolute;
    bottom: var(--bn-space-4);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
    text-decoration: none;
    z-index: 2;
    transition: color var(--bn-transition);
}
.bn-hero__scroll:hover { color: var(--bn-accent); }
.bn-hero__scroll i { animation: bn-hero-scroll-bounce 2.5s ease-in-out infinite; }
@keyframes bn-hero-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Hero responsive */
@media (max-width: 1024px) {
    .bn-hero__slide {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--bn-space-6);
        min-height: auto;
        padding-block: var(--bn-space-8) var(--bn-space-10);
    }
    .bn-hero__title { max-width: none; margin-inline: auto; }
    .bn-hero__subtitle { margin-inline: auto; }
    .bn-hero__actions { justify-content: center; }
    .bn-hero__trust { justify-content: center; }
    .bn-hero__visual { min-height: 340px; max-width: 440px; margin-inline: auto; }
    .bn-hero__float--1 { right: 0; top: 0; }
    .bn-hero__float--2 { left: 0; }
    .bn-hero__satellite { top: 8%; right: 4%; width: 56px; height: 56px; }
}

@media (max-width: 768px) {
    .bn-hero { min-height: auto; }
    .bn-hero__title { font-size: clamp(2.25rem, 9vw, 3rem); }
    .bn-hero__visual { min-height: 300px; }
    .bn-hero__float { padding: 0.5rem 0.7rem; }
    .bn-hero__float strong { font-size: 0.75rem; }
    .bn-hero__float--3 { display: none; }
    .bn-hero__stats-glass { width: 94%; padding: var(--bn-space-2) var(--bn-space-3); }
    .bn-hero__stat-val { font-size: 1.1rem; }
    .bn-hero__scroll { display: none; }
    .bn-hero__fiber-net { opacity: 0.35; }
}

@media (max-width: 480px) {
    .bn-hero__actions { flex-direction: column; width: 100%; }
    .bn-hero__btn { width: 100%; }
    .bn-hero__trust { flex-direction: column; align-items: center; gap: var(--bn-space-1); }
    .bn-hero__float--2 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .bn-hero__aurora,
    .bn-hero__orbit,
    .bn-hero__net-link,
    .bn-hero__nodes circle,
    .bn-hero__trunk-line,
    .bn-hero__sat-beam,
    .bn-hero__fiber-path,
    .bn-hero__scroll i,
    .bn-hero__eyebrow-dot,
    .bn-hero__stats-live { animation: none; }
    .bn-hero__fiber-path { stroke-dashoffset: 0; }
}

/* ─── Page hero ─── */
.bn-page-hero {
    position: relative;
    padding: calc(var(--bn-header-h) + var(--bn-trust-h) + var(--bn-space-8)) 0 var(--bn-space-8);
    background: linear-gradient(145deg, var(--bn-dark) 0%, var(--bn-dark-2) 45%, color-mix(in srgb, var(--bn-primary) 35%, var(--bn-dark)) 100%);
    color: #fff;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bn-page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(var(--bn-accent-rgb), 0.14), transparent 50%),
        radial-gradient(ellipse at 10% 100%, rgba(var(--bn-primary-rgb), 0.2), transparent 45%);
    opacity: 1;
}
.bn-page-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='0.6'%3E%3Cpath d='M10 40 Q25 20 40 40 T70 40'/%3E%3Cpath d='M10 55 Q25 35 40 55 T70 55'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
    opacity: 0.8;
}
.bn-page-hero .bn-container { position: relative; }
.bn-page-hero__title {
    font-size: var(--bn-text-3xl);
    font-weight: 600;
    max-width: 800px;
    color: #fff;
    letter-spacing: -0.035em;
}
.bn-page-hero__subtitle {
    font-size: var(--bn-text-lg);
    color: rgba(255, 255, 255, 0.6);
    max-width: 580px;
    margin: 0;
    line-height: 1.6;
}

.bn-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bn-space-1);
    font-size: var(--bn-text-sm);
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: var(--bn-space-4);
}
.bn-breadcrumb a { color: rgba(255, 255, 255, 0.45); }
.bn-breadcrumb a:hover { color: var(--bn-accent); }
.bn-breadcrumb__sep { opacity: 0.35; }

/* ─── Sections ─── */
.bn-section {
    padding: var(--bn-space-10) 0;
    position: relative;
}
.bn-section--alt {
    background: linear-gradient(180deg, var(--bn-surface-tint) 0%, var(--bn-surface-alt) 100%);
    border-block: 1px solid color-mix(in srgb, var(--bn-primary) 8%, transparent);
}
.bn-section--tint {
    background: linear-gradient(135deg, color-mix(in srgb, var(--bn-primary) 5%, #fff) 0%, var(--bn-surface-warm) 100%);
    border-block: 1px solid color-mix(in srgb, var(--bn-primary) 6%, transparent);
}
.bn-section--mesh {
    background: var(--bn-surface-alt);
    border-block: 1px solid var(--bn-border);
}
.bn-section--mesh::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 10% 20%, rgba(var(--bn-primary-rgb), 0.08), transparent 55%),
        radial-gradient(ellipse 40% 35% at 90% 80%, rgba(var(--bn-accent-rgb), 0.06), transparent 50%);
    pointer-events: none;
}
.bn-section--mesh .bn-container { position: relative; }
.bn-section--dark {
    background: var(--bn-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.bn-section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(var(--bn-primary-rgb), 0.22), transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(var(--bn-accent-rgb), 0.08), transparent 45%);
    pointer-events: none;
}
.bn-section--dark .bn-container { position: relative; }
.bn-section--dark .bn-section-head__subtitle,
.bn-section--dark .bn-eyebrow { color: rgba(255, 255, 255, 0.6); }
.bn-section--dark .bn-section-head__title { color: #fff; }
.bn-section--stats {
    padding-top: 0;
    margin-top: calc(var(--bn-space-8) * -1);
    position: relative;
    z-index: 2;
}
.bn-section__action {
    text-align: center;
    margin-top: var(--bn-space-8);
    display: flex;
    justify-content: center;
    gap: var(--bn-space-2);
    flex-wrap: wrap;
}

/* ─── Grid ─── */
.bn-grid { display: grid; gap: var(--bn-space-4); }
.bn-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bn-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bn-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ─── Stats (standalone grid only — hero dock uses .bn-stat-bar) ─── */
.bn-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--bn-space-3);
}
.bn-stat-grid .bn-stat-card {
    padding: var(--bn-space-5) var(--bn-space-4);
    text-align: center;
    background: var(--bn-surface);
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius);
    box-shadow: var(--bn-shadow);
    transition: transform var(--bn-transition), box-shadow var(--bn-transition);
}
.bn-stat-grid .bn-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bn-shadow-md);
}
.bn-stat-grid .bn-stat-card__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin: 0 auto var(--bn-space-3);
    border-radius: var(--bn-radius-sm);
    background: var(--bn-primary-soft);
    color: var(--bn-primary);
    font-size: 1.1rem;
}
.bn-stat-grid .bn-stat-card__value {
    font-family: var(--bn-display);
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    font-weight: 600;
    color: var(--bn-primary);
    line-height: 1;
    margin-bottom: var(--bn-space-1);
    letter-spacing: -0.03em;
}
.bn-stat-grid .bn-stat-card__label { font-weight: 600; font-size: var(--bn-text-sm); color: var(--bn-text); }
.bn-stat-grid .bn-stat-card__desc {
    font-size: 0.8125rem;
    color: var(--bn-text-muted);
    margin: var(--bn-space-1) 0 0;
    line-height: 1.5;
}

/* ─── Service cards ─── */
.bn-service-card { overflow: hidden; padding: 0; }
.bn-service-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--bn-primary), var(--bn-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--bn-ease-out);
}
.bn-service-card:hover .bn-service-card__accent { transform: scaleX(1); }
.bn-service-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--bn-radius-sm);
    background: var(--bn-primary-soft);
    color: var(--bn-primary);
    font-size: 1.2rem;
    margin-bottom: var(--bn-space-3);
    transition: background var(--bn-transition), color var(--bn-transition);
}
.bn-service-card:hover .bn-service-card__icon {
    background: var(--bn-primary);
    color: #fff;
}
.bn-service-card--lg { padding: 0; }
.bn-service-card__media img { width: 100%; height: 176px; object-fit: cover; }
.bn-service-card__body { padding: var(--bn-space-4); }

/* ─── Split layout ─── */
.bn-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bn-space-8);
    align-items: center;
    margin-bottom: var(--bn-space-10);
}
.bn-split--reverse { direction: rtl; }
.bn-split--reverse > * { direction: ltr; }
.bn-split__title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}
.bn-split__image { border-radius: var(--bn-radius-lg); box-shadow: var(--bn-shadow-lg); }
.bn-split__card { padding: var(--bn-space-5); }
.bn-feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--bn-radius-sm);
    background: var(--bn-primary);
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: var(--bn-space-3);
}

/* ─── Partners marquee ─── */
.bn-partner-marquee { overflow: hidden; margin-bottom: var(--bn-space-4); position: relative; }
.bn-marquee-pause {
    position: absolute;
    top: calc(var(--bn-space-4) * -1);
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem;
    font-size: var(--bn-text-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--bn-radius-xs);
    cursor: pointer;
}
.bn-marquee-pause:hover { background: rgba(255, 255, 255, 0.1); }
.bn-partner-marquee:hover .bn-partner-track,
.bn-partner-marquee:focus-within .bn-partner-track,
.bn-partner-marquee.is-paused .bn-partner-track { animation-play-state: paused; }
.bn-partner-track {
    display: flex;
    gap: var(--bn-space-3);
    animation: bn-marquee 35s linear infinite;
    width: max-content;
}
.bn-partner-chip {
    flex-shrink: 0;
    padding: var(--bn-space-3) var(--bn-space-5);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bn-radius-sm);
    min-width: 140px;
    text-align: center;
}
.bn-partner-chip img {
    height: 28px;
    width: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}
.bn-partner-chip span { color: rgba(255, 255, 255, 0.85); font-weight: 600; font-size: var(--bn-text-sm); }
@keyframes bn-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Testimonials ─── */
.bn-testimonial-swiper { padding-bottom: var(--bn-space-6) !important; }
.bn-testimonial {
    position: relative;
    padding: var(--bn-space-6);
    height: 100%;
    background: var(--bn-surface);
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius);
    transition: box-shadow var(--bn-transition), transform var(--bn-transition);
}
.bn-testimonial::before {
    content: '\201C';
    position: absolute;
    top: var(--bn-space-3);
    left: var(--bn-space-4);
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 1;
    color: color-mix(in srgb, var(--bn-primary) 12%, transparent);
    pointer-events: none;
}
.bn-testimonial:hover { box-shadow: var(--bn-shadow-md); transform: translateY(-2px); }
.bn-testimonial__stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: var(--bn-space-2);
    color: var(--bn-accent);
    font-size: 0.75rem;
}
.bn-testimonial__quote {
    position: relative;
    font-size: 1.05rem;
    color: var(--bn-text);
    margin: 0 0 var(--bn-space-4);
    line-height: 1.65;
    padding-top: var(--bn-space-2);
}
.bn-testimonial footer strong {
    display: block;
    font-family: var(--bn-display);
    font-size: 0.9rem;
    font-weight: 600;
}
.bn-testimonial footer span {
    display: block;
    color: var(--bn-text-muted);
    font-size: 0.8125rem;
    margin-top: 2px;
}
.bn-testimonial-swiper .swiper-pagination-bullet-active { background: var(--bn-primary); }

/* ─── Blog ─── */
.bn-blog-card__meta { font-size: 0.8125rem; color: var(--bn-text-muted); margin-bottom: var(--bn-space-2); }
.bn-blog-card__image {
    display: block;
    margin: calc(var(--bn-space-4) * -1);
    margin-bottom: var(--bn-space-3);
    overflow: hidden;
    border-radius: var(--bn-radius) var(--bn-radius) 0 0;
}
.bn-blog-card__image img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s var(--bn-ease-out); }
.bn-blog-card:hover .bn-blog-card__image img { transform: scale(1.03); }
.bn-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bn-space-2);
    color: var(--bn-text-muted);
    font-size: var(--bn-text-sm);
    margin-bottom: var(--bn-space-4);
}
.bn-article-hero { margin-bottom: var(--bn-space-4); border-radius: var(--bn-radius-lg); overflow: hidden; }
.bn-article-hero img { width: 100%; max-height: 420px; object-fit: cover; }

/* ─── CTA band ─── */
.bn-cta-band { padding: var(--bn-space-10) 0; }
.bn-cta-band__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bn-space-8);
    padding: var(--bn-space-8);
    background: var(--bn-dark-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bn-radius-lg);
    color: #fff;
    overflow: hidden;
}
.bn-cta-band__glow {
    position: absolute;
    width: 360px;
    height: 360px;
    top: -60%;
    right: -5%;
    background: radial-gradient(circle, rgba(var(--bn-accent-rgb), 0.15), transparent 65%);
    pointer-events: none;
}
.bn-cta-band__content { position: relative; max-width: 540px; }
.bn-cta-band__title {
    font-size: var(--bn-text-2xl);
    color: #fff;
    margin-bottom: var(--bn-space-2);
    font-weight: 600;
    letter-spacing: -0.03em;
}
.bn-cta-band__text {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
    font-size: var(--bn-text-base);
}
.bn-cta-band__actions {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--bn-space-2);
    flex-shrink: 0;
}

/* ─── Pre-footer CTA ─── */
.bn-prefooter-cta {
    padding: var(--bn-space-10) 0;
    background: var(--bn-surface-alt);
    border-top: 1px solid var(--bn-border);
}
.bn-prefooter-cta__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--bn-space-8);
    align-items: center;
    padding: var(--bn-space-8);
    background: var(--bn-surface);
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-lg);
    box-shadow: var(--bn-shadow);
}
.bn-prefooter-cta__title {
    font-size: var(--bn-text-2xl);
    font-weight: 600;
    margin-bottom: var(--bn-space-2);
    max-width: 480px;
    letter-spacing: -0.03em;
}
.bn-prefooter-cta__text {
    color: var(--bn-text-muted);
    margin: 0 0 var(--bn-space-4);
    line-height: 1.6;
    max-width: 520px;
}
.bn-prefooter-cta__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bn-space-2) var(--bn-space-4);
    list-style: none;
    margin: 0;
    padding: 0;
}
.bn-prefooter-cta__trust li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--bn-text-sm);
    font-weight: 500;
    color: var(--bn-text-muted);
}
.bn-prefooter-cta__trust i { color: var(--bn-primary); }
.bn-prefooter-cta__actions { display: flex; flex-direction: column; gap: var(--bn-space-2); }
.bn-prefooter-cta__email {
    text-align: center;
    font-size: var(--bn-text-sm);
    color: var(--bn-text-muted);
    margin-top: var(--bn-space-1);
}
.bn-prefooter-cta__email strong { color: var(--bn-primary); }

/* ─── Coverage page ─── */
.bn-cov-section {
    padding: var(--bn-space-10) 0;
}
.bn-cov-header {
    max-width: 560px;
    margin-bottom: var(--bn-space-8);
}
.bn-cov-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bn-primary);
    margin-bottom: var(--bn-space-2);
}
.bn-cov-title {
    font-family: var(--bn-display);
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin: 0 0 var(--bn-space-3);
    color: var(--bn-text);
}
.bn-cov-lead {
    font-size: var(--bn-text-lg);
    line-height: 1.6;
    color: var(--bn-text-muted);
    margin: 0;
    max-width: 52ch;
}

.bn-cov-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--bn-space-6);
    align-items: start;
}

/* Map panel */
.bn-cov-map-panel { position: sticky; top: calc(var(--bn-header-h) + var(--bn-space-4)); }
.bn-cov-map__frame {
    position: relative;
    border-radius: var(--bn-radius-lg);
    border: 1px solid var(--bn-border);
    background: linear-gradient(160deg, var(--bn-surface-alt) 0%, var(--bn-surface) 100%);
    overflow: hidden;
    box-shadow: var(--bn-shadow-sm);
}
.bn-cov-map__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 70%, rgba(var(--bn-accent-rgb), 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 75% 25%, rgba(var(--bn-primary-rgb), 0.1) 0%, transparent 55%);
    pointer-events: none;
}
.bn-cov-map__svg {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
.bn-cov-map__land {
    transition: fill 0.4s ease, stroke-opacity 0.4s ease;
}
.bn-cov-map.is-active .bn-cov-map__land {
    fill: color-mix(in srgb, var(--bn-primary) 18%, transparent);
}
.bn-cov-map__link {
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}
.bn-cov-map__badge {
    position: absolute;
    top: var(--bn-space-3);
    left: var(--bn-space-3);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bn-primary);
    background: color-mix(in srgb, var(--bn-surface) 85%, transparent);
    backdrop-filter: blur(8px);
    border: 1px solid var(--bn-border);
    border-radius: 999px;
}
.bn-cov-map__status-key {
    display: flex;
    gap: var(--bn-space-4);
    margin-top: var(--bn-space-3);
    padding: 0 var(--bn-space-1);
}
.bn-cov-map__status-key-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--bn-text-xs);
    font-weight: 500;
    color: var(--bn-text-muted);
}
.bn-cov-map__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.bn-cov-map__status-key-item--available .bn-cov-map__status-dot {
    background: var(--bn-accent);
    box-shadow: 0 0 8px rgba(var(--bn-accent-rgb), 0.6);
}
.bn-cov-map__status-key-item--expanding .bn-cov-map__status-dot {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

/* Map markers */
.bn-cov-marker {
    cursor: pointer;
    outline: none;
}
.bn-cov-marker__dot { transition: r 0.3s ease; }
.bn-cov-marker__ring { transition: r 0.3s ease, opacity 0.3s ease; }
.bn-cov-marker__pulse {
    transform-origin: center;
    animation: bn-cov-pulse 2.8s ease-in-out infinite;
}
.bn-cov-marker__label {
    font-family: var(--bn-display);
    font-size: 9px;
    font-weight: 600;
    fill: var(--bn-text-muted);
    pointer-events: none;
    opacity: 0.85;
}
.bn-cov-marker:hover .bn-cov-marker__dot,
.bn-cov-marker.is-active .bn-cov-marker__dot { r: 7; }
.bn-cov-marker:hover .bn-cov-marker__ring,
.bn-cov-marker.is-active .bn-cov-marker__ring { r: 14; opacity: 1; }
.bn-cov-marker.is-active .bn-cov-marker__label {
    fill: var(--bn-primary);
    opacity: 1;
}
.bn-cov-marker:focus-visible .bn-cov-marker__ring {
    stroke: var(--bn-primary);
    stroke-width: 3;
}
@keyframes bn-cov-pulse {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50% { transform: scale(1.35); opacity: 0.7; }
}

/* Sidebar */
.bn-cov-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--bn-space-4);
}
.bn-cov-avail {
    padding: var(--bn-space-4);
    border-radius: var(--bn-radius-lg);
    border: 1px solid var(--bn-border);
    background: var(--bn-surface);
}
.bn-cov-avail__title {
    font-family: var(--bn-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0 var(--bn-space-3);
    color: var(--bn-text);
}
.bn-cov-avail__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--bn-space-2);
}
.bn-cov-avail__list li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--bn-text-xs);
    font-weight: 600;
    color: var(--bn-text-muted);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: var(--bn-surface-alt);
    border: 1px solid var(--bn-border);
}
.bn-cov-avail__icon {
    display: flex;
    color: var(--bn-primary);
    font-size: 0.9rem;
}

/* Region cards */
.bn-cov-cards {
    display: flex;
    flex-direction: column;
    gap: var(--bn-space-3);
}
.bn-cov-card {
    padding: var(--bn-space-4);
    border-radius: var(--bn-radius-lg);
    border: 1px solid var(--bn-border);
    background: var(--bn-surface);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.35s ease;
}
.bn-cov-card:hover,
.bn-cov-card.is-active {
    transform: translateX(4px);
    border-color: color-mix(in srgb, var(--bn-primary) 25%, var(--bn-border));
    box-shadow: 0 12px 32px -12px rgba(var(--bn-primary-rgb), 0.15);
}
.bn-cov-card--nationwide {
    background: linear-gradient(135deg, var(--bn-surface) 0%, color-mix(in srgb, var(--bn-primary) 6%, var(--bn-surface)) 100%);
    border-color: color-mix(in srgb, var(--bn-primary) 18%, var(--bn-border));
}
.bn-cov-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--bn-space-2);
}
.bn-cov-card__status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}
.bn-cov-card__status--available {
    color: #047857;
    background: color-mix(in srgb, #10b981 12%, transparent);
    border: 1px solid color-mix(in srgb, #10b981 22%, transparent);
}
.bn-cov-card__status--expanding {
    color: #b45309;
    background: color-mix(in srgb, #f59e0b 12%, transparent);
    border: 1px solid color-mix(in srgb, #f59e0b 22%, transparent);
}
.bn-cov-card__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.bn-cov-card__pin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius);
    background: var(--bn-surface-alt);
    color: var(--bn-text-muted);
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.bn-cov-card__pin:hover,
.bn-cov-card.is-active .bn-cov-card__pin {
    color: var(--bn-primary);
    border-color: color-mix(in srgb, var(--bn-primary) 30%, var(--bn-border));
    background: color-mix(in srgb, var(--bn-primary) 8%, var(--bn-surface));
}
.bn-cov-card__title {
    font-family: var(--bn-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 var(--bn-space-2);
    color: var(--bn-text);
}
.bn-cov-card__text {
    font-size: var(--bn-text-sm);
    line-height: 1.55;
    color: var(--bn-text-muted);
    margin: 0 0 var(--bn-space-3);
}
.bn-cov-card__techs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.bn-cov-card__techs li {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--bn-primary);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: color-mix(in srgb, var(--bn-primary) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--bn-primary) 14%, transparent);
}
.bn-cov-card__techs i { font-size: 0.75rem; opacity: 0.85; }

@media (max-width: 1024px) {
    .bn-cov-layout { grid-template-columns: 1fr; }
    .bn-cov-map-panel { position: static; }
}
@media (max-width: 640px) {
    .bn-cov-marker__label { font-size: 8px; }
}

/* Legacy coverage (homepage fragments) */
.bn-coverage-map__canvas {
    position: relative;
    height: 300px;
    margin-bottom: var(--bn-space-8);
    background: var(--bn-primary-soft);
    border-radius: var(--bn-radius-lg);
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--bn-border);
}
.bn-coverage-map__glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--bn-accent-rgb), 0.35), transparent 70%);
    animation: bn-pulse 3s ease-in-out infinite;
}
.bn-coverage-map__label {
    position: relative;
    font-family: var(--bn-display);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--bn-primary);
    letter-spacing: -0.02em;
}
.bn-coverage-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bn-accent);
    box-shadow: 0 0 10px var(--bn-accent);
    margin-bottom: var(--bn-space-2);
}
@keyframes bn-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ─── Partners page ─── */
.bn-prt-section {
    padding: var(--bn-space-10) 0;
}
.bn-prt-header {
    text-align: center;
    max-width: 480px;
    margin: 0 auto var(--bn-space-8);
}
.bn-prt-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bn-primary);
    margin-bottom: var(--bn-space-2);
}
.bn-prt-title {
    font-family: var(--bn-display);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0;
    color: var(--bn-text);
}

.bn-prt-showcase {
    position: relative;
    padding: var(--bn-space-2) 0 var(--bn-space-6);
}
.bn-prt-showcase::before,
.bn-prt-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(2rem, 8vw, 5rem);
    z-index: 2;
    pointer-events: none;
}
.bn-prt-showcase::before {
    left: 0;
    background: linear-gradient(90deg, var(--bn-bg) 0%, transparent 100%);
}
.bn-prt-showcase::after {
    right: 0;
    background: linear-gradient(270deg, var(--bn-bg) 0%, transparent 100%);
}

.bn-prt-swiper {
    overflow: hidden;
    padding: var(--bn-space-2) var(--bn-space-1);
}
.bn-prt-swiper .swiper-slide {
    width: auto;
    height: auto;
}

.bn-prt-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--bn-space-3);
    padding: var(--bn-space-5) var(--bn-space-6);
    min-width: 200px;
    min-height: 148px;
    border-radius: var(--bn-radius-lg);
    border: 1px solid var(--bn-border);
    background: var(--bn-surface);
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.45s ease,
        background 0.35s ease;
}
a.bn-prt-logo { cursor: pointer; }
.bn-prt-logo:hover,
.bn-prt-logo:focus-visible {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--bn-primary) 22%, var(--bn-border));
    box-shadow: 0 16px 40px -16px rgba(var(--bn-primary-rgb), 0.2);
    background: var(--bn-surface);
    outline: none;
}
.bn-prt-logo:focus-visible {
    box-shadow:
        0 16px 40px -16px rgba(var(--bn-primary-rgb), 0.2),
        0 0 0 2px var(--bn-primary);
}

.bn-prt-logo__frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    flex: 1;
}
.bn-prt-logo__frame img {
    max-width: 140px;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition:
        filter 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.bn-prt-logo:hover .bn-prt-logo__frame img,
.bn-prt-logo:focus-visible .bn-prt-logo__frame img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.06);
}

.bn-prt-logo__word {
    font-family: var(--bn-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: center;
    line-height: 1.3;
    color: var(--bn-text-muted);
    filter: grayscale(100%);
    opacity: 0.65;
    transition:
        color 0.4s ease,
        filter 0.45s ease,
        opacity 0.45s ease,
        transform 0.45s ease;
}
.bn-prt-logo:hover .bn-prt-logo__word,
.bn-prt-logo:focus-visible .bn-prt-logo__word {
    color: var(--bn-primary);
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.02);
}

.bn-prt-logo__name {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--bn-text-muted);
    text-align: center;
    line-height: 1.35;
    max-width: 18ch;
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        color 0.35s ease;
}
.bn-prt-logo:hover .bn-prt-logo__name,
.bn-prt-logo:focus-visible .bn-prt-logo__name {
    opacity: 1;
    transform: translateY(0);
    color: var(--bn-text);
}

.bn-prt-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--bn-space-2);
    margin-top: var(--bn-space-5);
}
.bn-prt-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--bn-border);
    border-radius: 999px;
    background: var(--bn-surface);
    color: var(--bn-text-muted);
    cursor: pointer;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}
.bn-prt-control:hover {
    color: var(--bn-primary);
    border-color: color-mix(in srgb, var(--bn-primary) 25%, var(--bn-border));
    background: color-mix(in srgb, var(--bn-primary) 6%, var(--bn-surface));
}
.bn-prt-control:active { transform: scale(0.94); }
.bn-prt-control:focus-visible {
    outline: 2px solid var(--bn-primary);
    outline-offset: 2px;
}

.bn-prt-footnote {
    text-align: center;
    font-size: var(--bn-text-sm);
    color: var(--bn-text-muted);
    margin: var(--bn-space-6) 0 0;
}

@media (max-width: 640px) {
    .bn-prt-logo {
        min-width: 168px;
        padding: var(--bn-space-4) var(--bn-space-4);
        min-height: 128px;
    }
    .bn-prt-logo__name {
        opacity: 1;
        transform: none;
        font-size: 0.625rem;
    }
}

/* Legacy partner cards (unused on partners page) */
.bn-partner-card { text-align: center; }
.bn-partner-card--featured { border-color: color-mix(in srgb, var(--bn-primary) 30%, transparent); }
.bn-partner-card__logo {
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: var(--bn-space-3);
}
.bn-partner-card__logo img { max-height: 44px; width: auto; margin: 0 auto; }
.bn-partner-card__initial {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    border-radius: var(--bn-radius-sm);
    background: var(--bn-primary);
    color: #fff;
    font-family: var(--bn-display);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ─── Gallery ─── */
.bn-gallery-card {
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    background: var(--bn-dark-2);
    color: #fff;
}
.bn-gallery-card h3 { color: #fff; }
.bn-gallery-card p { color: rgba(255, 255, 255, 0.65); margin: 0; }
.bn-gallery-card__overlay { margin-bottom: auto; }
.bn-gallery-card__count {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--bn-radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.bn-masonry {
    columns: 3;
    column-gap: var(--bn-space-3);
}
.bn-masonry__item {
    break-inside: avoid;
    margin-bottom: var(--bn-space-3);
    border-radius: var(--bn-radius);
    overflow: hidden;
}
.bn-masonry__item img { width: 100%; transition: transform 0.5s var(--bn-ease-out); }
.bn-masonry__item:hover img { transform: scale(1.02); }

/* ─── Downloads ─── */
.bn-download-list { display: grid; gap: var(--bn-space-3); }
.bn-download-item {
    display: flex;
    align-items: center;
    gap: var(--bn-space-4);
    padding: var(--bn-space-4);
}
.bn-download-item__icon { font-size: 1.75rem; color: var(--bn-primary); flex-shrink: 0; }
.bn-download-item__body { flex: 1; }
.bn-download-item__body h3 { margin: 0 0 0.2rem; font-size: 1.05rem; font-weight: 600; }
.bn-download-item__body p { margin: 0 0 var(--bn-space-1); font-size: var(--bn-text-sm); color: var(--bn-text-muted); }
.bn-download-item__meta { display: flex; gap: var(--bn-space-2); font-size: 0.75rem; color: var(--bn-text-muted); }

/* ─── Careers ─── */
.bn-career-list { display: grid; gap: var(--bn-space-3); }
.bn-career-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bn-space-4);
    padding: var(--bn-space-4);
}
.bn-career-item h2 { font-size: 1.15rem; margin: 0 0 var(--bn-space-1); font-weight: 600; }
.bn-career-item h2 a { color: inherit; text-decoration: none; }
.bn-career-item h2 a:hover { color: var(--bn-primary); }
.bn-career-item p { margin: 0 0 var(--bn-space-2); color: var(--bn-text-muted); font-size: 0.9375rem; }
.bn-career-item__tags { display: flex; flex-wrap: wrap; gap: var(--bn-space-1); }
.bn-career-meta { display: flex; flex-wrap: wrap; gap: var(--bn-space-1); margin-bottom: var(--bn-space-4); }

/* ─── Contact page ─── */
.bn-ctc-quick {
    padding: var(--bn-space-5) 0 0;
    margin-top: calc(var(--bn-space-4) * -1);
}
.bn-ctc-quick__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bn-space-3);
}
.bn-ctc-quick__btn {
    display: flex;
    align-items: center;
    gap: var(--bn-space-3);
    padding: var(--bn-space-4);
    border-radius: var(--bn-radius-lg);
    border: 1px solid var(--bn-border);
    background: var(--bn-surface);
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.4s ease;
}
.bn-ctc-quick__btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -16px rgba(var(--bn-primary-rgb), 0.18);
}
.bn-ctc-quick__btn--call:hover { border-color: color-mix(in srgb, var(--bn-primary) 30%, var(--bn-border)); }
.bn-ctc-quick__btn--whatsapp:hover { border-color: color-mix(in srgb, #25d366 35%, var(--bn-border)); }
.bn-ctc-quick__btn--email:hover { border-color: color-mix(in srgb, var(--bn-accent) 35%, var(--bn-border)); }
.bn-ctc-quick__icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    border-radius: var(--bn-radius);
    font-size: 1.15rem;
}
.bn-ctc-quick__btn--call .bn-ctc-quick__icon {
    background: color-mix(in srgb, var(--bn-primary) 10%, transparent);
    color: var(--bn-primary);
}
.bn-ctc-quick__btn--whatsapp .bn-ctc-quick__icon {
    background: color-mix(in srgb, #25d366 12%, transparent);
    color: #16a34a;
}
.bn-ctc-quick__btn--email .bn-ctc-quick__icon {
    background: color-mix(in srgb, var(--bn-accent) 12%, transparent);
    color: var(--bn-primary);
}
.bn-ctc-quick__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.bn-ctc-quick__text strong {
    font-family: var(--bn-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.bn-ctc-quick__text span {
    font-size: var(--bn-text-sm);
    color: var(--bn-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bn-ctc-section {
    padding: var(--bn-space-8) 0 var(--bn-space-10);
}
.bn-ctc-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: var(--bn-space-8);
    align-items: start;
}
.bn-ctc-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bn-primary);
    margin-bottom: var(--bn-space-2);
}
.bn-ctc-title {
    font-family: var(--bn-display);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 var(--bn-space-2);
    color: var(--bn-text);
}
.bn-ctc-lead {
    font-size: var(--bn-text-sm);
    line-height: 1.6;
    color: var(--bn-text-muted);
    margin: 0 0 var(--bn-space-5);
}

.bn-ctc-offices {
    display: flex;
    flex-direction: column;
    gap: var(--bn-space-3);
    margin-bottom: var(--bn-space-5);
}
.bn-ctc-office {
    padding: var(--bn-space-4);
    border-radius: var(--bn-radius-lg);
    border: 1px solid var(--bn-border);
    background: var(--bn-surface);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.bn-ctc-office:hover {
    border-color: color-mix(in srgb, var(--bn-primary) 20%, var(--bn-border));
    box-shadow: var(--bn-shadow-xs);
}
.bn-ctc-office--hq {
    border-color: color-mix(in srgb, var(--bn-primary) 22%, var(--bn-border));
    background: linear-gradient(135deg, var(--bn-surface) 0%, color-mix(in srgb, var(--bn-primary) 5%, var(--bn-surface)) 100%);
}
.bn-ctc-office__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bn-space-2);
    margin-bottom: var(--bn-space-2);
}
.bn-ctc-office__name {
    font-family: var(--bn-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
}
.bn-ctc-office__badge {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    color: var(--bn-primary);
    background: color-mix(in srgb, var(--bn-primary) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--bn-primary) 18%, transparent);
}
.bn-ctc-office__address,
.bn-ctc-office__hours {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: var(--bn-text-sm);
    color: var(--bn-text-muted);
    margin: 0 0 var(--bn-space-2);
    line-height: 1.5;
}
.bn-ctc-office__address i,
.bn-ctc-office__hours i {
    color: var(--bn-primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.bn-ctc-office__links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: var(--bn-space-2);
}
.bn-ctc-office__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--bn-text-sm);
    font-weight: 500;
    color: var(--bn-primary);
    text-decoration: none;
    transition: color 0.25s ease;
}
.bn-ctc-office__links a:hover { color: var(--bn-accent); }

.bn-ctc-social__title {
    font-size: 0.8125rem;
    font-weight: 600;
    margin: 0 0 var(--bn-space-3);
    color: var(--bn-text);
}
.bn-ctc-social__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bn-space-2);
}
.bn-ctc-social__links a {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: var(--bn-surface);
    color: var(--bn-text-muted);
    font-size: 1rem;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}
.bn-ctc-social__links a:hover {
    color: #fff;
    background: var(--bn-primary);
    border-color: var(--bn-primary);
    transform: translateY(-2px);
}

.bn-ctc-form-card {
    padding: var(--bn-space-6);
    border-radius: var(--bn-radius-lg);
    border: 1px solid var(--bn-border);
    background: var(--bn-surface);
    box-shadow: var(--bn-shadow-sm);
}
.bn-ctc-form-card__title {
    font-family: var(--bn-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 var(--bn-space-1);
}
.bn-ctc-form-card__sub {
    font-size: var(--bn-text-sm);
    color: var(--bn-text-muted);
    margin: 0 0 var(--bn-space-5);
}

.bn-ctc-map-section {
    padding: 0 0 var(--bn-space-10);
    background: var(--bn-surface-alt);
    border-block: 1px solid var(--bn-border);
}
.bn-ctc-map-section .bn-container {
    padding-block: var(--bn-space-8);
}
.bn-ctc-map-header {
    margin-bottom: var(--bn-space-5);
}
.bn-ctc-map {
    position: relative;
    border-radius: var(--bn-radius-lg);
    overflow: hidden;
    border: 1px solid var(--bn-border);
    box-shadow: var(--bn-shadow-sm);
    background: var(--bn-surface);
}
.bn-ctc-map__frame {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}
.bn-ctc-map__overlay {
    position: absolute;
    bottom: var(--bn-space-4);
    left: var(--bn-space-4);
    max-width: min(320px, calc(100% - var(--bn-space-8)));
    padding: var(--bn-space-4);
    border-radius: var(--bn-radius);
    background: color-mix(in srgb, var(--bn-surface) 92%, transparent);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bn-border);
    box-shadow: var(--bn-shadow-sm);
}
.bn-ctc-map__pin {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: color-mix(in srgb, var(--bn-primary) 12%, transparent);
    color: var(--bn-primary);
    margin-bottom: var(--bn-space-2);
    font-size: 1rem;
}
.bn-ctc-map__overlay p {
    font-size: var(--bn-text-sm);
    color: var(--bn-text-muted);
    margin: 0 0 var(--bn-space-2);
    line-height: 1.5;
}
.bn-ctc-map__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--bn-text-sm);
    font-weight: 600;
    color: var(--bn-primary);
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}
.bn-ctc-map__link:hover {
    color: var(--bn-accent);
    gap: 0.5rem;
}

/* Legacy contact grid */
.bn-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: var(--bn-space-8);
    align-items: start;
}
.bn-contact-info h2 { font-size: 1.6rem; font-weight: 600; letter-spacing: -0.02em; }
.bn-contact-info__list { list-style: none; padding: 0; margin: var(--bn-space-4) 0; }
.bn-contact-info__list li {
    display: flex;
    gap: var(--bn-space-3);
    margin-bottom: var(--bn-space-3);
}
.bn-contact-info__list i {
    font-size: 1.15rem;
    color: var(--bn-primary);
    margin-top: 0.1rem;
}
.bn-contact-info__list strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bn-text-muted);
    font-weight: 600;
}
.bn-location-card { padding: var(--bn-space-3); margin-bottom: var(--bn-space-2); }
.bn-location-card h4 { margin: 0 0 0.3rem; font-size: 0.9375rem; font-weight: 600; }
.bn-location-card p { margin: 0; font-size: var(--bn-text-sm); color: var(--bn-text-muted); }
.bn-location-card__hours { margin-top: var(--bn-space-1) !important; }

.bn-contact-form { padding: var(--bn-space-6); }
.bn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--bn-space-3); }
.bn-field { display: block; margin-bottom: var(--bn-space-3); }
.bn-field span {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: var(--bn-space-1);
    color: var(--bn-text);
    letter-spacing: -0.01em;
}
.bn-field input,
.bn-field select,
.bn-field textarea {
    width: 100%;
    padding: 0.7rem var(--bn-space-2);
    font-family: inherit;
    font-size: 0.9375rem;
    border: 1px solid var(--bn-border-strong);
    border-radius: var(--bn-radius-sm);
    background: var(--bn-surface);
    transition: border-color var(--bn-transition), box-shadow var(--bn-transition);
}
.bn-field input:focus,
.bn-field select:focus,
.bn-field textarea:focus {
    outline: none;
    border-color: var(--bn-primary);
    box-shadow: var(--bn-focus-ring);
}

/* ─── About page ─── */
.bn-about__section {
    padding: var(--bn-space-10) 0;
}
.bn-about__section--soft {
    background: var(--bn-surface-alt);
    border-block: 1px solid var(--bn-border);
}
.bn-about-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bn-primary);
    margin-bottom: var(--bn-space-2);
}
.bn-about-title {
    font-family: var(--bn-display);
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin: 0 0 var(--bn-space-3);
    color: var(--bn-text);
}
.bn-about-lead {
    font-size: var(--bn-text-lg);
    line-height: 1.6;
    color: var(--bn-text-muted);
    margin: 0 0 var(--bn-space-5);
    max-width: 48ch;
}
.bn-about-header {
    margin-bottom: var(--bn-space-8);
    max-width: 520px;
}
.bn-about-header .bn-about-title { margin-bottom: 0; }

/* Overview two-column */
.bn-about-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bn-space-10);
    align-items: center;
}
.bn-about-facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--bn-space-2);
}
.bn-about-facts li {
    display: flex;
    align-items: center;
    gap: var(--bn-space-2);
    font-size: var(--bn-text-sm);
    font-weight: 500;
    color: var(--bn-text);
}
.bn-about-facts__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: var(--bn-radius-xs);
    background: var(--bn-primary-soft);
    color: var(--bn-primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.bn-about-illu {
    position: relative;
    padding: var(--bn-space-4);
}
.bn-about-illu__glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(ellipse at 50% 50%, rgba(var(--bn-accent-rgb), 0.18), transparent 65%);
    filter: blur(32px);
    pointer-events: none;
}
.bn-about-illu__svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
}
.bn-about-illu__fiber {
    animation: bn-about-fiber 5s linear infinite;
}
@keyframes bn-about-fiber {
    to { stroke-dashoffset: -32; }
}
.bn-about-illu__badge {
    position: absolute;
    z-index: 2;
    bottom: 12%;
    left: 8%;
    display: inline-flex;
    align-items: center;
    gap: var(--bn-space-2);
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: rgba(2, 10, 20, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--bn-radius-full);
}
.bn-about-illu__badge i { color: var(--bn-accent); }

/* Mission & Vision */
.bn-about-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bn-space-4);
}
.bn-about-mv-card {
    padding: var(--bn-space-6);
    background: var(--bn-surface);
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-lg);
    box-shadow: var(--bn-shadow-xs);
    transition: transform 0.35s var(--bn-ease-out), box-shadow 0.35s var(--bn-ease), border-color 0.35s var(--bn-ease);
}
.bn-about-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bn-shadow-md);
    border-color: color-mix(in srgb, var(--bn-primary) 18%, transparent);
}
.bn-about-mv-card__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: var(--bn-space-3);
    border-radius: var(--bn-radius-sm);
    background: linear-gradient(145deg, var(--bn-primary-soft), color-mix(in srgb, var(--bn-accent) 10%, #fff));
    color: var(--bn-primary);
    font-size: 1.15rem;
}
.bn-about-mv-card__title {
    font-family: var(--bn-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 var(--bn-space-2);
    color: var(--bn-text);
}
.bn-about-mv-card__text {
    margin: 0;
    font-size: var(--bn-text-sm);
    line-height: 1.65;
    color: var(--bn-text-muted);
}

/* Core values */
.bn-about-values {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--bn-space-3);
}
.bn-about-value {
    padding: var(--bn-space-4);
    text-align: center;
    background: var(--bn-surface);
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius);
    transition: transform 0.3s var(--bn-ease-out), border-color 0.3s var(--bn-ease), box-shadow 0.3s var(--bn-ease);
}
.bn-about-value:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--bn-primary) 22%, transparent);
    box-shadow: var(--bn-shadow);
}
.bn-about-value__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin: 0 auto var(--bn-space-2);
    border-radius: var(--bn-radius-sm);
    background: var(--bn-primary-soft);
    color: var(--bn-primary);
    font-size: 1.1rem;
    transition: background 0.3s var(--bn-ease), color 0.3s var(--bn-ease);
}
.bn-about-value:hover .bn-about-value__icon {
    background: var(--bn-primary);
    color: #fff;
}
.bn-about-value__name {
    font-family: var(--bn-display);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 var(--bn-space-1);
    letter-spacing: -0.01em;
    color: var(--bn-text);
}
.bn-about-value__text {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--bn-text-muted);
}

/* Timeline */
.bn-about-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--bn-space-3);
    position: relative;
}
.bn-about-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--bn-primary), var(--bn-accent));
    opacity: 0.2;
    border-radius: 2px;
    transform-origin: left;
    transform: scaleX(0);
}
.bn-about-timeline.is-animated::before {
    animation: bn-about-line 1s var(--bn-ease-out) forwards;
}
@keyframes bn-about-line {
    to { transform: scaleX(1); }
}
.bn-about-timeline__item {
    position: relative;
    padding: var(--bn-space-3);
    background: var(--bn-surface);
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius);
    transition: border-color 0.3s var(--bn-ease), box-shadow 0.3s var(--bn-ease);
}
.bn-about-timeline__item:hover {
    border-color: color-mix(in srgb, var(--bn-accent) 35%, transparent);
    box-shadow: var(--bn-shadow-xs);
}
.bn-about-timeline__marker {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: var(--bn-space-2);
    border-radius: 50%;
    background: var(--bn-primary);
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 0 0 4px var(--bn-surface-alt), 0 4px 12px rgba(var(--bn-primary-rgb), 0.25);
}
.bn-about-timeline__year {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bn-accent);
    margin-bottom: 0.25rem;
}
.bn-about-timeline__title {
    font-family: var(--bn-display);
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
    color: var(--bn-text);
}
.bn-about-timeline__text {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.55;
    color: var(--bn-text-muted);
}

@media (max-width: 1024px) {
    .bn-about-overview { grid-template-columns: 1fr; gap: var(--bn-space-6); }
    .bn-about-overview__visual { order: -1; max-width: 420px; margin-inline: auto; }
    .bn-about-values { grid-template-columns: repeat(3, 1fr); }
    .bn-about-timeline { grid-template-columns: repeat(2, 1fr); }
    .bn-about-timeline::before { display: none; }
}
@media (max-width: 768px) {
    .bn-about__section { padding: var(--bn-space-8) 0; }
    .bn-about-mv { grid-template-columns: 1fr; }
    .bn-about-values { grid-template-columns: repeat(2, 1fr); }
    .bn-about-timeline { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .bn-about-values { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .bn-about-illu__fiber { animation: none; }
    .bn-about-timeline::before { transform: scaleX(1); }
}

/* ─── Values / MV (legacy — other pages) ─── */
.bn-mv-card { padding: var(--bn-space-6); }
.bn-mv-card h3 { font-size: 1.35rem; margin-bottom: var(--bn-space-2); font-weight: 600; }
.bn-mv-card p { color: rgba(255, 255, 255, 0.75); margin: 0; line-height: 1.7; }
.bn-value-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--bn-radius-sm);
    background: color-mix(in srgb, var(--value-color, var(--bn-primary)) 12%, transparent);
    color: var(--value-color, var(--bn-primary));
    font-size: 1.25rem;
    margin-bottom: var(--bn-space-3);
}

.bn-team-card { text-align: center; }
.bn-team-card__photo {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--bn-space-3);
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid color-mix(in srgb, var(--bn-primary) 15%, transparent);
}
.bn-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.bn-team-card h3 { font-size: 1.05rem; margin-bottom: 0.2rem; font-weight: 600; }
.bn-team-card__role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bn-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 var(--bn-space-2);
}
.bn-team-card__bio { font-size: 0.9375rem; color: var(--bn-text-muted); margin: 0; }

.bn-project-card { overflow: hidden; padding: 0; }
.bn-project-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; }
.bn-project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--bn-ease-out); }
.bn-project-card:hover .bn-project-card__media img { transform: scale(1.03); }
.bn-project-card__body { padding: var(--bn-space-3) var(--bn-space-4) var(--bn-space-4); }
.bn-project-card__status {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bn-primary);
    margin-bottom: var(--bn-space-1);
}
.bn-project-card__meta { font-size: var(--bn-text-sm); color: var(--bn-text-muted); margin: var(--bn-space-2) 0 0; }

/* ─── Footer ─── */
.bn-footer {
    position: relative;
    background: var(--bn-dark);
    color: rgba(255, 255, 255, 0.75);
    overflow: hidden;
}
.bn-footer__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(var(--bn-primary-rgb), 0.14), transparent 55%),
        radial-gradient(ellipse at 90% 100%, rgba(var(--bn-accent-rgb), 0.1), transparent 50%);
    pointer-events: none;
}
.bn-footer .bn-container { position: relative; }

.bn-ft-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bn-accent);
    margin-bottom: var(--bn-space-2);
}
.bn-ft-newsletter {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bn-ft-newsletter__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bn-space-8);
    align-items: center;
    padding: var(--bn-space-8) 0;
}
.bn-ft-newsletter__title {
    font-family: var(--bn-display);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 var(--bn-space-2);
    color: #fff;
}
.bn-ft-newsletter__text {
    font-size: var(--bn-text-sm);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: 42ch;
}
.bn-ft-newsletter__form {
    display: flex;
    gap: var(--bn-space-2);
    align-items: stretch;
}
.bn-ft-newsletter__field {
    flex: 1;
    margin: 0;
}
.bn-ft-newsletter__field input {
    width: 100%;
    height: 100%;
    min-height: 48px;
    padding: 0.75rem var(--bn-space-3);
    font-family: inherit;
    font-size: 0.9375rem;
    border-radius: var(--bn-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.bn-ft-newsletter__field input::placeholder { color: rgba(255, 255, 255, 0.35); }
.bn-ft-newsletter__field input:focus {
    outline: none;
    border-color: rgba(var(--bn-accent-rgb), 0.5);
    box-shadow: 0 0 0 3px rgba(var(--bn-accent-rgb), 0.15);
}
.bn-ft-newsletter__form .bn-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.bn-ft-main {
    position: relative;
    padding: var(--bn-space-8) 0 var(--bn-space-6);
}
.bn-ft-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: var(--bn-space-6);
}
.bn-ft-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--bn-text-sm);
    max-width: 30ch;
    line-height: 1.6;
    margin: var(--bn-space-3) 0 0;
}
.bn-ft-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bn-space-2);
    margin-top: var(--bn-space-4);
}
.bn-ft-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
.bn-ft-badge--accent {
    border-color: rgba(var(--bn-accent-rgb), 0.35);
    color: var(--bn-accent);
    background: rgba(var(--bn-accent-rgb), 0.08);
}
.bn-ft-heading {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 var(--bn-space-3);
    font-weight: 600;
}
.bn-ft-links,
.bn-ft-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bn-ft-links li,
.bn-ft-contact li { margin-bottom: var(--bn-space-2); }
.bn-ft-links a,
.bn-ft-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.8125rem;
    line-height: 1.4;
    transition: color 0.25s ease, transform 0.25s ease;
}
.bn-ft-links a:hover,
.bn-ft-contact a:hover {
    color: var(--bn-accent);
    transform: translateX(2px);
}
.bn-ft-contact a i {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.bn-ft-contact a:hover i { color: var(--bn-accent); }

.bn-ft-social {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bn-space-2);
    margin-top: var(--bn-space-4);
}
.bn-ft-social a {
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border-radius: var(--bn-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}
.bn-ft-social a:hover {
    background: var(--bn-primary);
    border-color: var(--bn-primary);
    color: #fff;
    transform: translateY(-2px);
}

.bn-ft-bottom {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--bn-space-4) 0 var(--bn-space-5);
}
.bn-ft-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--bn-space-3);
}
.bn-ft-copy,
.bn-ft-legal {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
}
.bn-ft-legal { max-width: 480px; text-align: right; }

.bn-logo--footer .bn-logo__text { color: #fff; }
.bn-logo--footer .bn-logo__sub { color: rgba(255, 255, 255, 0.4); }

/* Legacy footer classes */
.bn-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(5, 1fr);
    gap: var(--bn-space-6);
    margin-bottom: var(--bn-space-8);
}
.bn-footer__tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--bn-text-sm);
    max-width: 280px;
    line-height: 1.6;
    margin-top: var(--bn-space-2);
}
.bn-footer__badges { display: flex; flex-wrap: wrap; gap: var(--bn-space-1); margin-top: var(--bn-space-3); }
.bn-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: var(--bn-radius-xs);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
}
.bn-badge--accent {
    border-color: rgba(var(--bn-accent-rgb), 0.35);
    color: var(--bn-accent);
    background: rgba(var(--bn-accent-rgb), 0.08);
}
.bn-footer__heading {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--bn-space-3);
    font-weight: 600;
}
.bn-footer__links,
.bn-footer__contact { list-style: none; padding: 0; margin: 0; }
.bn-footer__links li,
.bn-footer__contact li { margin-bottom: var(--bn-space-2); }
.bn-footer__links a,
.bn-footer__contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color var(--bn-transition);
}
.bn-footer__links a:hover,
.bn-footer__contact a:hover { color: var(--bn-accent); }
.bn-footer__social { display: flex; gap: var(--bn-space-1); margin-top: var(--bn-space-3); }
.bn-footer__social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: var(--bn-radius-xs);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: background var(--bn-transition), border-color var(--bn-transition), color var(--bn-transition);
}
.bn-footer__social a:hover {
    background: var(--bn-primary);
    border-color: var(--bn-primary);
    color: #fff;
}
.bn-footer__bottom {
    padding-top: var(--bn-space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--bn-space-2);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}
.bn-footer__legal { max-width: 460px; text-align: right; line-height: 1.5; }
.bn-logo--footer .bn-logo__text { color: #fff; }
.bn-logo--footer .bn-logo__sub { color: rgba(255, 255, 255, 0.4); }
.bn-footer__newsletter-text { font-size: var(--bn-text-sm); color: rgba(255, 255, 255, 0.5); margin-bottom: var(--bn-space-2); }
.bn-newsletter-form { display: flex; flex-direction: column; gap: var(--bn-space-1); }
.bn-newsletter-form .bn-field { margin: 0; }
.bn-newsletter-form input {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.bn-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.35); }

/* ─── FAQ ─── */
.bn-faq-list { display: grid; gap: var(--bn-space-2); }
.bn-faq-item {
    background: var(--bn-surface);
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-sm);
    overflow: hidden;
    transition: box-shadow var(--bn-transition), border-color var(--bn-transition);
}
.bn-faq-item[open] {
    box-shadow: var(--bn-shadow);
    border-color: color-mix(in srgb, var(--bn-primary) 18%, transparent);
}
.bn-faq-item summary {
    padding: var(--bn-space-3) var(--bn-space-4);
    font-family: var(--bn-display);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bn-space-2);
    letter-spacing: -0.01em;
}
.bn-faq-item summary::-webkit-details-marker { display: none; }
.bn-faq-item summary::after {
    content: '+';
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--bn-primary);
    flex-shrink: 0;
    transition: transform var(--bn-transition);
}
.bn-faq-item[open] summary::after { transform: rotate(45deg); }
.bn-faq-item__answer {
    padding: 0 var(--bn-space-4) var(--bn-space-4);
    color: var(--bn-text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    border-top: 1px solid var(--bn-border);
}
.bn-faq-item__answer p { margin: var(--bn-space-3) 0 0; }

/* ─── Toast / Empty / Search ─── */
.bn-toast {
    position: fixed;
    bottom: var(--bn-space-4);
    right: var(--bn-space-4);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: var(--bn-space-2);
    padding: var(--bn-space-3) var(--bn-space-4);
    border-radius: var(--bn-radius-sm);
    box-shadow: var(--bn-shadow-lg);
    animation: bn-slide-in 0.35s var(--bn-ease-out);
    max-width: 380px;
    font-size: var(--bn-text-sm);
}
.bn-toast--success {
    background: color-mix(in srgb, var(--bn-accent) 8%, #fff);
    color: var(--bn-primary-dark);
    border: 1px solid color-mix(in srgb, var(--bn-accent) 25%, transparent);
}
.bn-toast--error {
    background: color-mix(in srgb, var(--bn-primary) 6%, #fff);
    color: var(--bn-primary-dark);
    border: 1px solid color-mix(in srgb, var(--bn-primary) 20%, transparent);
}
@keyframes bn-slide-in {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.bn-empty {
    text-align: center;
    padding: var(--bn-space-10);
    color: var(--bn-text-muted);
    background: var(--bn-surface-alt);
    border: 1px dashed var(--bn-border-strong);
    border-radius: var(--bn-radius);
}
.bn-empty__icon { font-size: 2.5rem; color: var(--bn-primary); opacity: 0.25; margin-bottom: var(--bn-space-3); }
.bn-empty__message { margin: 0 0 var(--bn-space-3); max-width: 36ch; margin-inline: auto; line-height: 1.6; }

img[loading="lazy"] { opacity: 0; transition: opacity 0.45s var(--bn-ease); }
img[loading="lazy"].is-loaded,
img[loading="eager"] { opacity: 1; }

.bn-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--bn-space-2);
    margin-top: var(--bn-space-8);
    flex-wrap: wrap;
}
.bn-pagination__info { font-size: var(--bn-text-sm); color: var(--bn-text-muted); font-weight: 500; }

.bn-search-form {
    display: flex;
    gap: var(--bn-space-2);
    margin-bottom: var(--bn-space-8);
    flex-wrap: wrap;
}
.bn-field--search { flex: 1; min-width: 220px; margin: 0; }
.bn-search-summary { color: var(--bn-text-muted); margin-bottom: var(--bn-space-4); }
.bn-search-results { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--bn-space-2); }
.bn-search-result {
    padding: var(--bn-space-3);
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius);
    background: var(--bn-surface);
    transition: border-color var(--bn-transition), box-shadow var(--bn-transition);
}
.bn-search-result:hover {
    border-color: color-mix(in srgb, var(--bn-primary) 20%, transparent);
    box-shadow: var(--bn-shadow-xs);
}
.bn-search-result__type {
    display: inline-block;
    font-size: var(--bn-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bn-primary);
    margin-bottom: 0.3rem;
}
.bn-search-result h2 { font-size: 1.05rem; margin: 0 0 0.3rem; font-weight: 600; }
.bn-search-result p { margin: 0; color: var(--bn-text-muted); font-size: var(--bn-text-sm); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── Services page ─── */
.bn-svc-section {
    padding: var(--bn-space-10) 0;
}
.bn-svc-header {
    max-width: 560px;
    margin-bottom: var(--bn-space-8);
}
.bn-svc-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bn-primary);
    margin-bottom: var(--bn-space-2);
}
.bn-svc-title {
    font-family: var(--bn-display);
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin: 0 0 var(--bn-space-3);
    color: var(--bn-text);
}
.bn-svc-lead {
    font-size: var(--bn-text-lg);
    line-height: 1.6;
    color: var(--bn-text-muted);
    margin: 0;
    max-width: 52ch;
}

.bn-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--bn-space-4);
}

.bn-svc-card {
    --svc-accent: var(--bn-primary);
    --svc-accent-rgb: var(--bn-primary-rgb);
    border-radius: var(--bn-radius-lg);
    background: var(--bn-surface);
    border: 1px solid var(--bn-border);
    overflow: hidden;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
}
.bn-svc-card[data-svc-accent="violet"]   { --svc-accent: #7c3aed; --svc-accent-rgb: 124, 58, 237; }
.bn-svc-card[data-svc-accent="cyan"]     { --svc-accent: var(--bn-accent); --svc-accent-rgb: var(--bn-accent-rgb); }
.bn-svc-card[data-svc-accent="emerald"]  { --svc-accent: #059669; --svc-accent-rgb: 5, 150, 105; }
.bn-svc-card[data-svc-accent="sky"]      { --svc-accent: #0284c7; --svc-accent-rgb: 2, 132, 199; }
.bn-svc-card[data-svc-accent="indigo"]   { --svc-accent: #4f46e5; --svc-accent-rgb: 79, 70, 229; }

.bn-svc-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--svc-accent) 28%, var(--bn-border));
    box-shadow:
        0 4px 6px -1px rgba(var(--svc-accent-rgb), 0.06),
        0 20px 40px -12px rgba(var(--svc-accent-rgb), 0.18);
}
.bn-svc-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.bn-svc-card__link:focus-visible {
    outline: 2px solid var(--svc-accent);
    outline-offset: 2px;
}

.bn-svc-card__visual {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--svc-accent) 8%, var(--bn-surface-alt)) 0%,
        var(--bn-surface-alt) 100%
    );
}
.bn-svc-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 60% at 50% 100%,
        rgba(var(--svc-accent-rgb), 0.18) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}
.bn-svc-card:hover .bn-svc-card__glow { opacity: 1; }

.bn-svc-card__illu {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--bn-space-3);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.bn-svc-card:hover .bn-svc-card__illu { transform: scale(1.04) translateY(-4px); }

.bn-svc-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.bn-svc-card:hover .bn-svc-card__img {
    transform: scale(1.05);
}

.bn-svc-illu {
    width: 100%;
    height: 100%;
    max-height: 140px;
    object-fit: contain;
}

.bn-svc-card__icon {
    position: absolute;
    bottom: var(--bn-space-3);
    left: var(--bn-space-3);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--bn-radius);
    background: var(--bn-surface);
    border: 1px solid color-mix(in srgb, var(--svc-accent) 22%, var(--bn-border));
    box-shadow: 0 8px 24px -6px rgba(var(--svc-accent-rgb), 0.25);
    font-size: 1.5rem;
    color: var(--svc-accent);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        background 0.35s ease;
}
.bn-svc-card:hover .bn-svc-card__icon {
    transform: scale(1.08);
    background: var(--svc-accent);
    color: #fff;
    box-shadow: 0 12px 28px -8px rgba(var(--svc-accent-rgb), 0.45);
}

.bn-svc-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--bn-space-4);
    gap: var(--bn-space-2);
}
.bn-svc-card__tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--svc-accent);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--svc-accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--svc-accent) 18%, transparent);
}
.bn-svc-card__title {
    font-family: var(--bn-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
    color: var(--bn-text);
    transition: color 0.3s ease;
}
.bn-svc-card:hover .bn-svc-card__title { color: var(--svc-accent); }
.bn-svc-card__text {
    font-size: var(--bn-text-sm);
    line-height: 1.55;
    color: var(--bn-text-muted);
    margin: 0;
    flex: 1;
}
.bn-svc-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: var(--bn-space-2);
    font-size: var(--bn-text-sm);
    font-weight: 600;
    color: var(--svc-accent);
    transition: gap 0.3s ease;
}
.bn-svc-card:hover .bn-svc-card__cta { gap: 0.65rem; }
.bn-svc-card__cta i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}
.bn-svc-card:hover .bn-svc-card__cta i { transform: translateX(3px); }

@media (max-width: 1024px) {
    .bn-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .bn-svc-grid { grid-template-columns: 1fr; }
    .bn-svc-card__icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
}

/* ─── Ultra-wide ─── */
@media (min-width: 1600px) {
    :root {
        --bn-container: 1360px;
        --bn-space-10: 6rem;
    }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .bn-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .bn-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .bn-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .bn-ft-grid { grid-template-columns: repeat(2, 1fr); }
    .bn-ft-newsletter__inner { grid-template-columns: 1fr; gap: var(--bn-space-5); }
    .bn-ctc-layout { grid-template-columns: 1fr; }
    .bn-ctc-quick__inner { grid-template-columns: 1fr; }
    .bn-split { grid-template-columns: 1fr; }
    .bn-split--reverse { direction: ltr; }
    .bn-cta-band__inner { flex-direction: column; text-align: center; }
    .bn-cta-band__actions { width: 100%; align-items: center; }
    .bn-prefooter-cta__inner { grid-template-columns: 1fr; text-align: center; }
    .bn-prefooter-cta__trust { justify-content: center; }
    .bn-prefooter-cta__actions { align-items: stretch; }
    .bn-trust-bar__hide-sm { display: none; }
}

@media (max-width: 768px) {
    :root {
        --bn-space-10: 4rem;
        --bn-header-h: 64px;
        --bn-trust-h: 32px;
    }
    .bn-container { width: min(var(--bn-container), calc(100% - var(--bn-space-3))); }
    .bn-trust-bar__phone { display: none; }
    .bn-trust-bar__list { gap: var(--bn-space-2); font-size: 0.625rem; }
    .bn-grid--2,
    .bn-grid--3 { grid-template-columns: 1fr; }
    .bn-stat-grid { grid-template-columns: 1fr 1fr; }
    .bn-contact-grid { grid-template-columns: 1fr; }
    .bn-ctc-map__frame { height: 320px; }
    .bn-ctc-map__overlay {
        position: static;
        max-width: none;
        margin: var(--bn-space-3);
    }
    .bn-ft-newsletter__form { flex-direction: column; }
    .bn-ft-grid { grid-template-columns: 1fr; }
    .bn-ft-bottom__inner { flex-direction: column; text-align: center; }
    .bn-ft-legal { text-align: center; max-width: none; }
    .bn-form-row { grid-template-columns: 1fr; }
    .bn-career-item { flex-direction: column; align-items: flex-start; }
    .bn-download-item { flex-direction: column; align-items: flex-start; }
    .bn-masonry { columns: 2; }
    .bn-footer__grid { grid-template-columns: 1fr; }
    .bn-footer__bottom { flex-direction: column; text-align: center; }
    .bn-footer__legal { text-align: center; max-width: none; }
    .bn-section--stats { margin-top: calc(var(--bn-space-6) * -1); }
}

@media (max-width: 480px) {
    .bn-stat-grid { grid-template-columns: 1fr; }
    .bn-masonry { columns: 1; }
    .bn-trust-bar__list li:not(:first-child) { display: none; }
    .bn-ctc-quick__inner { grid-template-columns: 1fr; }
}

/* ─── v5 Brand logo ─── */
.bn-brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.bn-brand-logo__img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}
.bn-brand-logo--header .bn-brand-logo__img {
    height: 52px;
    width: auto;
    max-width: 210px;
    transition: height 0.35s var(--bn-ease), transform 0.35s ease;
    background: transparent;
}
.bn-header.is-scrolled .bn-brand-logo--header .bn-brand-logo__img {
    height: 46px;
    max-width: 190px;
    transform: none;
}
.bn-brand-logo--drawer .bn-brand-logo__img {
    height: 40px;
    max-width: 170px;
}
.bn-brand-logo--footer {
    display: inline-flex;
    padding: 0;
    background: transparent;
    border: none;
}
.bn-brand-logo--footer .bn-brand-logo__img {
    height: 36px;
    max-width: 140px;
}
.bn-brand-logo--loader {
    display: inline-block;
    padding: 0;
    background: transparent;
    border-radius: 0;
}
.bn-brand-logo--loader .bn-brand-logo__img {
    height: 40px;
    max-width: 150px;
    margin: 0 auto var(--bn-space-3);
}

/* ─── v5 Premium card system (section cards) ─── */
.bn-svc-card,
.bn-prt-logo,
.bn-ctc-office,
.bn-ctc-form-card,
.bn-ctc-quick__btn,
.bn-about-overview__visual .bn-glass-card,
.bn-testimonial,
.bn-glass-card.bn-split__card {
    background: linear-gradient(165deg, #ffffff 0%, color-mix(in srgb, var(--bn-primary) 3.5%, #fff) 100%) !important;
    border: 1px solid color-mix(in srgb, var(--bn-primary) 14%, #eadde0) !important;
    box-shadow: var(--bn-shadow-card) !important;
}
.bn-svc-card,
.bn-prt-logo,
.bn-ctc-office,
.bn-ctc-form-card {
    border-radius: var(--bn-radius-lg) !important;
    overflow: hidden;
    position: relative;
}
.bn-svc-card::before,
.bn-prt-logo::before,
.bn-ctc-office::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bn-primary), var(--bn-accent));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}
.bn-svc-card:hover::before,
.bn-prt-logo:hover::before,
.bn-ctc-office:hover::before { opacity: 1; }

.bn-svc-section,
.bn-cov-section,
.bn-prt-section,
.bn-about__section,
.bn-ctc-section {
    position: relative;
}
.bn-services,
.bn-coverage,
.bn-partners,
.bn-contact,
.bn-about {
    position: relative;
}

/* Inner pages — tinted section backgrounds (skipped when alternating band is active) */
.bn-svc-section:not(.bn-home-band) { background: linear-gradient(180deg, var(--bn-surface-warm) 0%, var(--bn-surface-tint) 100%); }
.bn-cov-section:not(.bn-home-band) { background: var(--bn-surface-alt); }
.bn-prt-section:not(.bn-home-band) { background: linear-gradient(180deg, #fff 0%, var(--bn-surface-warm) 100%); }
.bn-ctc-section:not(.bn-home-band) { background: linear-gradient(135deg, var(--bn-surface-warm) 0%, color-mix(in srgb, var(--bn-primary) 4%, #fff) 100%); }
.bn-about__section:not(.bn-home-band) { background: transparent; }
.bn-about__section--soft {
    background: linear-gradient(180deg, var(--bn-surface-tint) 0%, var(--bn-surface-alt) 100%) !important;
}

.bn-cov-map-panel .bn-cov-map__frame,
.bn-ctc-form-card,
.bn-ctc-map {
    background: linear-gradient(160deg, #fff 0%, color-mix(in srgb, var(--bn-primary) 3%, #fff) 100%) !important;
    border: 1px solid color-mix(in srgb, var(--bn-primary) 12%, #eadde0) !important;
    box-shadow: var(--bn-shadow-card) !important;
}

.bn-ft-newsletter {
    background: linear-gradient(135deg, color-mix(in srgb, var(--bn-primary) 18%, var(--bn-dark)) 0%, var(--bn-dark-2) 100%);
}
.bn-footer__mesh {
    background:
        radial-gradient(ellipse at 15% 0%, rgba(var(--bn-primary-rgb), 0.2), transparent 55%),
        radial-gradient(ellipse at 85% 100%, rgba(var(--bn-accent-rgb), 0.1), transparent 50%);
}

    border-radius: var(--bn-radius-lg) !important;
}
.bn-testimonial {
    border-radius: var(--bn-radius-lg) !important;
}

.bn-glass-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 100%) !important;
    border: 1px solid color-mix(in srgb, var(--bn-primary) 12%, rgba(255, 255, 255, 0.6)) !important;
    box-shadow: var(--bn-shadow-card) !important;
}

.bn-btn--primary {
    background: linear-gradient(135deg, var(--bn-primary) 0%, color-mix(in srgb, var(--bn-primary) 75%, var(--bn-accent)) 100%);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(var(--bn-primary-rgb), 0.35);
}
.bn-btn--primary:hover {
    background: linear-gradient(135deg, var(--bn-primary-dark) 0%, var(--bn-primary) 100%);
    box-shadow: 0 8px 24px rgba(var(--bn-primary-rgb), 0.4);
}

.bn-eyebrow {
    color: var(--bn-primary);
}

/* ─── Compact footer v5.1 ─── */
.bn-ft-compact {
    position: relative;
    padding: var(--bn-space-5) 0 var(--bn-space-4);
}
.bn-ft-compact__top {
    display: grid;
    grid-template-columns: minmax(180px, 1.2fr) minmax(0, 1.5fr) minmax(220px, 1fr);
    gap: var(--bn-space-5);
    align-items: start;
    padding-bottom: var(--bn-space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bn-ft-compact .bn-ft-tagline {
    margin-top: var(--bn-space-2);
    font-size: 0.8125rem;
    max-width: 28ch;
}
.bn-ft-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
}
.bn-ft-nav__list a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.25s ease;
}
.bn-ft-nav__list a:hover { color: var(--bn-accent); }
.bn-ft-newsletter__form--inline {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}
.bn-ft-compact__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--bn-space-3);
    padding: var(--bn-space-3) 0;
}
.bn-ft-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}
.bn-ft-contact-row a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}
.bn-ft-contact-row a:hover { color: var(--bn-accent); }
.bn-ft-compact .bn-ft-bottom__inner {
    padding-top: var(--bn-space-3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 1024px) {
    .bn-ft-compact__top { grid-template-columns: 1fr 1fr; }
    .bn-ft-newsletter__form--inline { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .bn-ft-compact__top { grid-template-columns: 1fr; }
    .bn-ft-compact__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .bn-partner-track { animation: none; }
    .bn-page-loader { display: none; }
    body.bn-site.is-loading { overflow: auto; }
}
