/* ============================================================
   ZeroSuite Landing — moderno, autocontenido, mobile-first
   Namespace: .bn-*
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    --bn-orange:      #10b981; /* Neon Emerald Mint */
    --bn-orange-600:  #059669; /* Rich Emerald Hover */
    --bn-orange-50:   #062e1b; /* Deep Mint Shadow Base */

    --bn-teal:        #8b5cf6; /* Electric Electric Violet / Purple */
    --bn-teal-600:    #7c3aed; /* Deep Violet Accent */
    --bn-teal-900:    #4c1d95; /* Midnight Violet Base */

    --bn-ink:         #ffffff; /* Pure Obsidian White */
    --bn-ink-2:       #08090d; /* High-Tech Matte Dark background */
    --bn-ink-3:       #11131c; /* Soft Obsidian for luxury components */
    --bn-ink-soft:    #e2e8f0; /* Crisp Clean Platinum Slate text */
    --bn-muted:       #94a3b8; /* Cool Metallic Muted Gray */
    --bn-line:        rgba(255,255,255,0.06); /* Ultra-fine transparent border */
    --bn-bg:          #06070a; /* Cybernetic Stealth Space Base */
    --bn-bg-soft:     #0c0e14; /* Card background */
    --bn-bg-tint:     rgba(16, 185, 129, 0.05);
    --bn-bg-cool:     rgba(139, 92, 246, 0.05);

    --bn-radius-sm:   10px;
    --bn-radius:      16px;
    --bn-radius-lg:   24px;
    --bn-radius-pill: 999px;

    /* Sombras mas premium y limpias */
    --bn-shadow-xs:   0 1px 2px rgba(0,0,0,.6);
    --bn-shadow-sm:   0 4px 12px rgba(0,0,0,.5);
    --bn-shadow:      0 20px 50px -12px rgba(16, 185, 129, 0.12), 0 10px 20px -15px rgba(139, 92, 246, 0.12);
    --bn-shadow-lg:   0 40px 100px -20px rgba(16, 185, 129, 0.2), 0 20px 48px -20px rgba(139, 92, 246, 0.16);
    --bn-shadow-brand:0 18px 40px -16px rgba(16, 185, 129, 0.25);

    --bn-ease:        cubic-bezier(.16,1,.3,1);
    --bn-fast:        .2s var(--bn-ease);
    --bn-med:         .4s var(--bn-ease);

    --bn-font:        'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                      Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;

    --bn-container:   1200px;
    --bn-nav-h:       72px;
}

/* ---------- Reset suave (scoped para no romper plugins/admin) ---------- */
body.zerosuite-landing-page,
body.zerosuite-landing {
    margin: 0;
    font-family: var(--bn-font);
    color: var(--bn-ink-soft);
    background:
        radial-gradient(1200px at 50% -120px, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
        radial-gradient(900px at 90% 400px, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        #06070a;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.zerosuite-landing-page *,
.zerosuite-landing-page *::before,
.zerosuite-landing-page *::after,
.zerosuite-landing *,
.zerosuite-landing *::before,
.zerosuite-landing *::after {
    box-sizing: border-box;
}

/* ---------- Layout helpers ---------- */
.bn-container {
    width: 100%;
    max-width: var(--bn-container);
    margin: 0 auto;
    padding: 0 24px;
}

.bn-section {
    padding: clamp(64px, 8vw, 124px) 0;
}

.bn-section__head {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 64px);
}
.bn-section__head--light .bn-section__title,
.bn-section__head--light .bn-section__lead {
    color: #fff;
}

.bn-section__title {
    font-size: clamp(1.95rem, 1.25rem + 2.8vw, 3.15rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--bn-ink);
    margin: 0 0 .5em;
    letter-spacing: -.02em;
}

.bn-section__lead {
    font-size: clamp(1.02rem, .96rem + .42vw, 1.2rem);
    color: var(--bn-muted);
    max-width: 720px;
    margin: 0 auto;
}

.bn-eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--bn-orange);
    margin: 0 0 16px;
}

.bn-skip {
    position: absolute; left: -9999px; top: auto;
    width: 1px; height: 1px; overflow: hidden;
}
.bn-skip:focus {
    left: 12px; top: 12px;
    width: auto; height: auto;
    padding: 8px 14px; background: var(--bn-ink); color: #fff;
    border-radius: 8px; z-index: 1000;
}

/* ---------- Navbar ---------- */
.zerosuite-landing .bn-nav,
.bn-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--bn-nav-h);
    z-index: 100;
    background: transparent;
    transition: background-color var(--bn-fast), box-shadow var(--bn-fast),
                backdrop-filter var(--bn-fast);
}
.bn-nav--scrolled {
    background: rgba(8, 10, 16, 0.82);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255,255,255,.04);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}
.zerosuite-landing .bn-nav__inner,
.bn-nav__inner {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.zerosuite-landing .bn-nav__brand,
.bn-nav__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    flex: 0 0 auto;
}
.zerosuite-landing .bn-nav__brand img,
.bn-nav__brand img {
    display: block; height: 40px; width: auto; max-width: 160px;
    filter: brightness(0) invert(1);
    transition: filter var(--bn-fast);
}
.bn-nav--scrolled .bn-nav__brand img {
    filter: brightness(0) invert(1);
}
.zerosuite-landing .bn-nav__menu,
.bn-nav__menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.zerosuite-landing .bn-nav__menu a,
.bn-nav__menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1.2;
    transition: color var(--bn-fast);
}
.bn-nav--scrolled .bn-nav__menu a {
    color: rgba(255,255,255,0.9);
}
.bn-nav__menu a:hover { color: var(--bn-orange); }
.bn-nav__menu .bn-btn { padding: 10px 20px; }

.zerosuite-landing .bn-nav__toggle,
.bn-nav__toggle {
    display: none;
    background: transparent; border: 0;
    width: 40px; height: 40px; padding: 8px;
    cursor: pointer;
    flex: 0 0 auto;
}
.bn-nav__toggle span {
    display: block; height: 2px; background: #fff;
    margin: 5px 0;
    transition: transform var(--bn-fast), opacity var(--bn-fast), background-color var(--bn-fast);
}
.bn-nav--scrolled .bn-nav__toggle span,
.bn-nav--open .bn-nav__toggle span { background: #fff; }
.bn-nav--open .bn-nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bn-nav--open .bn-nav__toggle span:nth-child(2) { opacity: 0; }
.bn-nav--open .bn-nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
    .zerosuite-landing .bn-nav__toggle,
    .bn-nav__toggle { display: block; }

    .zerosuite-landing .bn-nav__menu,
    .bn-nav__menu {
        position: fixed;
        top: var(--bn-nav-h);
        left: 0;
        right: 0;
        bottom: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(13,14,23,.96);
        padding: 12px 24px 24px;
        box-shadow: 0 24px 48px rgba(0,0,0,.6);
        transform: translateY(-150%);
        transition: transform var(--bn-fast);
        visibility: hidden;
        border-bottom: 1px solid rgba(255,255,255,.08);
        backdrop-filter: blur(14px);
    }
    .zerosuite-landing .bn-nav__menu a,
    .bn-nav__menu a {
        color: #fff;
        padding: 14px 0;
        border-bottom: 1px solid var(--bn-line);
        text-align: left;
    }
    .bn-nav__menu .bn-btn { margin-top: 12px; text-align: center; }
    .bn-nav--open .bn-nav__menu {
        transform: translateY(0);
        visibility: visible;
    }

    /* Make sure the brand stays visible (and readable) on mobile, even before
       the user scrolls. The hero is dark, but the navbar starts transparent. */
    .bn-nav__brand img { height: 34px; }
}

/* ---------- Botones ---------- */
.bn-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: var(--bn-font);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .01em;
    line-height: 1;
    border-radius: var(--bn-radius-pill);
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform var(--bn-fast), box-shadow var(--bn-fast),
                background-color var(--bn-fast), color var(--bn-fast),
                border-color var(--bn-fast);
    white-space: nowrap;
}
.bn-btn--lg { padding: 16px 32px; font-size: 15px; }
.bn-btn--primary {
    background: var(--bn-orange); color: #fff;
    box-shadow: 0 6px 18px rgba(229,114,0,.32);
}
.bn-btn--primary:hover {
    background: var(--bn-orange-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(229,114,0,.42);
}
.bn-btn--outline {
    background: rgba(255,255,255,.06); color: #fff;
    border-color: rgba(255,255,255,.34);
    backdrop-filter: blur(8px);
}
.bn-btn--outline:hover {
    background: #fff; color: var(--bn-ink); border-color: #fff;
}
.bn-btn--ghost {
    background: rgba(255,255,255,.08); color: inherit;
    border-color: rgba(255,255,255,.32);
    padding: 8px 18px;
}
.bn-nav--scrolled .bn-btn--ghost { color: var(--bn-orange-600); border-color: rgba(79,70,229,.28); background: rgba(79,70,229,.06); }
.bn-btn--ghost:hover {
    background: var(--bn-orange); color: #fff !important; border-color: var(--bn-orange);
}

/* ---------- HERO ---------- */
.bn-hero {
    position: relative;
    min-height: clamp(560px, 88vh, 820px);
    display: flex;
    align-items: center;
    color: #fff;
    background-color: var(--bn-ink-2);
    background-image: var(--bn-hero-bg);
    background-size: cover;
    background-position: center;
    padding-top: var(--bn-nav-h);
    overflow: hidden;
}
.bn-hero .bn-container {
    position: relative;
    z-index: 1;
}
.bn-hero__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(1000px 600px at 80% 100%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
        radial-gradient(800px 520px at 15% 10%, rgba(139, 92, 246, 0.15) 0%, transparent 55%),
        linear-gradient(135deg, rgba(8, 10, 16, 0.98) 0%, rgba(12, 14, 24, 0.95) 55%, rgba(6, 46, 27, 0.6) 100%);
    pointer-events: none;
}
.bn-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    max-width: none;
    text-align: left;
    padding: clamp(32px, 5vw, 64px);
    border-radius: var(--bn-radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 40px 100px -20px rgba(16, 185, 129, 0.08), 0 20px 48px -20px rgba(139, 92, 246, 0.08);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
.bn-hero__inner::before,
.bn-hero__inner::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(30px);
}
.bn-hero__inner::before {
    width: 250px; height: 250px;
    right: -30px; top: -50px;
    background: rgba(16, 185, 129, 0.15);
}
.bn-hero__inner::after {
    width: 320px; height: 320px;
    right: 100px; bottom: -130px;
    background: rgba(139, 92, 246, 0.15);
}
.bn-hero__copy {
    position: relative;
    z-index: 1;
}
.bn-hero__visual {
    position: relative;
    z-index: 1;
}
.bn-hero__visual::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: calc(var(--bn-radius-lg) + 12px);
    background:
        radial-gradient(480px 220px at 20% 15%, rgba(139, 92, 246, 0.2), transparent 55%),
        radial-gradient(380px 220px at 85% 75%, rgba(16, 185, 129, 0.2), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
    filter: blur(12px);
    opacity: .95;
}
.bn-hero__visual-panel {
    position: relative;
    display: grid;
    gap: 20px;
    padding: 24px;
    border-radius: var(--bn-radius-lg);
    background: rgba(12, 14, 24, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--bn-shadow-lg);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
}
.bn-hero__panel-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.6);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.bn-hero__panel-dots {
    display: flex;
    gap: 6px;
}
.bn-hero__panel-dots span {
    width: 8px; height: 8px;
    border-radius: 999px;
}
.bn-hero__panel-dots span:first-child { background: #10b981; }
.bn-hero__panel-dots span:nth-child(2) { background: #8b5cf6; }
.bn-hero__panel-dots span:nth-child(3) { background: #3b82f6; }
.bn-hero__panel-bar strong {
    font-weight: 700;
}

/* ---------- COMPACT SYSTEM DASHBOARD ---------- */
.bn-system-dash {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 8px;
}
.bn-dash-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.bn-dash-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--bn-radius-sm);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bn-dash-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}
.bn-dash-val {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bn-dot-pulse {
    width: 6px; height: 6px;
    background-color: #10b981;
    border-radius: 99px;
    box-shadow: 0 0 8px #10b981;
    animation: bn-dot-glow 1.5s infinite alternate;
}
@keyframes bn-dot-glow {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 12px #10b981, 0 0 4px #10b981; }
}
.text-emerald { color: #10b981; }

.bn-dash-progress {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--bn-radius-sm);
    padding: 12px 14px;
}
.bn-dash-progress-heading {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    margin-bottom: 8px;
}
.bn-dash-bar-bg {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
}
.bn-dash-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #8b5cf6);
    border-radius: 99px;
}

.bn-dash-flow {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--bn-radius-sm);
    padding: 12px 14px;
}
.bn-flow-step {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bn-flow-icon {
    width: 18px; height: 18px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: bold;
}
.bn-flow-step.passed .bn-flow-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.bn-flow-step.active .bn-flow-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.25);
}
.bn-flow-step.passed .bn-flow-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}
.bn-flow-step.active .bn-flow-text {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}
.bn-flow-line {
    width: 1px; height: 8px;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 9px;
}
.bn-hero__title {
    font-size: clamp(2.5rem, 1.4rem + 5vw, 5rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -.025em;
    margin: 0 0 20px;
    color: #fff;
}
.bn-hl {
    background: linear-gradient(120deg, #10b981 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.bn-hero__sub {
    font-size: clamp(1.02rem, .92rem + .6vw, 1.28rem);
    color: rgba(255,255,255,.86);
    max-width: 720px;
    margin: 0 0 32px;
}
.bn-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.bn-hero__kpis {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
}
.bn-hero__kpis li {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}
.bn-hero__kpis strong {
    display: block;
    font-size: clamp(1.35rem, 1rem + 1.2vw, 2.05rem);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(120deg, #fff 0%, #dbeafe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.bn-hero__kpis span {
    display: block;
    color: rgba(255,255,255,.74);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .07em;
    line-height: 1.35;
}
.bn-hero__scroll {
    position: absolute;
    left: 50%; bottom: 28px;
    width: 28px; height: 44px;
    border: 2px solid rgba(255,255,255,.65);
    border-radius: 14px;
    transform: translateX(-50%);
    transition: border-color var(--bn-fast);
}
.bn-hero__scroll span {
    position: absolute;
    left: 50%; top: 8px;
    width: 3px; height: 8px;
    background: #fff; border-radius: 2px;
    transform: translateX(-50%);
    animation: bn-scroll 1.6s var(--bn-ease) infinite;
}
.bn-hero__scroll:hover { border-color: #fff; }
@media (max-width: 980px) {
    .bn-hero__inner {
        grid-template-columns: 1fr;
    }

    .bn-hero__visual {
        order: -1;
    }

    .bn-hero__visual::before {
        inset: 10px;
    }
}

@media (max-width: 640px) {
    .bn-hero__inner {
        padding: 24px;
    }

    .bn-hero__kpis,
    .bn-hero__panel-kpis {
        grid-template-columns: 1fr;
    }

    .bn-hero__panel-card {
        grid-template-columns: 1fr;
    }
}
@keyframes bn-scroll {
    0% { opacity: 0; transform: translate(-50%, 0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ---------- About ---------- */
.bn-about {
    position: relative;
    background:
    radial-gradient(900px 500px at 85% -10%, rgba(139, 92, 246, .05), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(16, 185, 129, .05), transparent 60%),
        transparent;
}
.bn-about > * { position: relative; z-index: 1; }
.bn-prose {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}
.bn-prose p { margin: 0 0 1em; font-size: 16.5px; }

.bn-badges {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.bn-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bn-line);
    border-radius: var(--bn-radius);
    padding: 22px 22px;
    box-shadow: var(--bn-shadow-xs);
    display: grid;
    gap: 6px;
    transition: transform var(--bn-fast), box-shadow var(--bn-fast), border-color var(--bn-fast);
}
.bn-badge:hover { transform: translateY(-4px); box-shadow: var(--bn-shadow); border-color: rgba(16, 185, 129, 0.3); }
.bn-badge__title {
    font-weight: 700;
    color: var(--bn-ink);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 13.5px;
}
.bn-badge__title::before {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--bn-orange);
    border-radius: 999px;
    margin-right: 8px;
    vertical-align: middle;
}
.bn-badge__text { color: var(--bn-muted); font-size: 14.5px; }

/* ---------- What we do ---------- */
.bn-what {
    position: relative;
    background-color: var(--bn-ink-2);
    background-image: var(--bn-what-bg);
    background-size: cover;
    background-position: center;
    color: #fff;
}
.bn-what__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(900px 500px at 100% 0%, rgba(139, 92, 246, .15) 0%, transparent 55%),
        radial-gradient(800px 500px at 0% 100%, rgba(16, 185, 129, .15) 0%, transparent 55%),
        linear-gradient(135deg, rgba(8, 10, 16, .98) 0%, rgba(12, 14, 24, .95) 55%, rgba(6, 46, 27, .80) 100%);
    pointer-events: none;
}
.bn-what__inner { position: relative; z-index: 1; }
.bn-what__desc {
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
    color: rgba(255,255,255,.92);
    font-size: 16.5px;
}
.bn-what__list {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 980px;
    margin-inline: auto;
}
.bn-what__list li {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 16px 20px;
    border-radius: var(--bn-radius-sm);
    color: #fff;
    font-weight: 500;
}
.bn-what__list li::before {
    content: "✓";
    display: inline-block;
    margin-right: 10px;
    color: var(--bn-orange);
    font-weight: 800;
}

/* ---------- Services ---------- */
.bn-grid { display: grid; gap: 24px; }
.bn-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.bn-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bn-line);
    border-radius: var(--bn-radius);
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: transform var(--bn-fast), box-shadow var(--bn-fast), border-color var(--bn-fast), background-color var(--bn-fast);
    box-shadow: var(--bn-shadow-xs);
}
.bn-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bn-orange) 0%, var(--bn-teal) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--bn-med);
}
.bn-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bn-shadow-lg);
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(255, 255, 255, 0.04);
}
.bn-card:hover::before { transform: scaleX(1); }
.bn-card__icon { margin-bottom: 18px; }
.bn-card__icon img { width: 72px; height: auto; transition: transform var(--bn-med); }
.bn-card:hover .bn-card__icon img { transform: scale(1.08) rotate(-3deg); }

/* SVG inline (servicios modernos, monocromáticos) */
.bn-card__icon--svg {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--bn-orange);
    transition: transform var(--bn-med), background var(--bn-med), color var(--bn-med);
}
.bn-card__icon--svg svg { width: 30px; height: 30px; display: block; }
.bn-card:hover .bn-card__icon--svg {
    transform: translateY(-2px) rotate(-4deg);
    background: linear-gradient(135deg, var(--bn-orange), var(--bn-teal));
    color: #05060b;
}
.bn-card__title {
    margin: 0 0 12px;
    color: var(--bn-orange);
    font-weight: 700;
    font-size: clamp(1.05rem, .95rem + .4vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: .015em;
    line-height: 1.25;
}
.bn-card__text { margin: 0; color: var(--bn-ink-soft); font-size: 15px; line-height: 1.6; }

/* ---------- Vision ---------- */
.bn-vision {
    position: relative;
    background:
        radial-gradient(1100px 600px at 50% 0%, rgba(139, 92, 246, .12) 0%, transparent 65%),
        radial-gradient(700px 500px at 100% 100%, rgba(16, 185, 129, .1) 0%, transparent 60%),
        linear-gradient(180deg, #080a10 0%, #11131c 100%);
    color: #fff;
}
.bn-vision .bn-section__title,
.bn-vision .bn-section__eyebrow { color: #fff; }
.bn-vision .bn-section__lead { color: rgba(255,255,255,.82); }
.bn-vision__card {
    max-width: 920px;
    margin: 0 auto;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--bn-radius-lg);
    padding: clamp(32px, 5vw, 60px);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    text-align: center;
    color: #fff;
}
.bn-vision__text {
    margin: 0;
    font-size: clamp(1.05rem, .95rem + .5vw, 1.25rem);
    line-height: 1.65;
    color: rgba(255,255,255,.95);
}
/* Failsafe: nunca dejar invisible el card de visión aunque el observer no dispare */
.bn-vision .bn-reveal,
.bn-vision__card { opacity: 1 !important; transform: none !important; }

/* ---------- Clients ---------- */
.bn-clients {
    background:
    radial-gradient(800px 400px at 50% 100%, rgba(139, 92, 246, .06), transparent 60%),
        var(--bn-ink-2);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.bn-logos {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
@media (min-width: 600px)  { .bn-logos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .bn-logos { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1100px) { .bn-logos { grid-template-columns: repeat(6, 1fr); } }

.bn-logos__item {
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    border-radius: var(--bn-radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: background-color var(--bn-fast), border-color var(--bn-fast), transform var(--bn-fast);
}
.bn-logos__item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}
.bn-logos__item img {
    max-width: 100%; height: auto; max-height: 48px;
    filter: brightness(0) invert(1) opacity(0.5);
    transition: filter var(--bn-fast), opacity var(--bn-fast), transform var(--bn-fast);
}
.bn-logos__item:hover img,
.bn-logos__item a:focus-visible img {
    filter: brightness(0) invert(1) opacity(0.95);
    transform: scale(1.05);
}

/* ---------- Contact ---------- */
.bn-contact {
    position: relative;
    background:
    radial-gradient(700px 420px at 100% 0%, rgba(139, 92, 246, .08), transparent 60%),
    radial-gradient(600px 360px at 0% 100%, rgba(16, 185, 129, .08), transparent 60%),
        linear-gradient(180deg, rgba(16, 185, 129, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}
.bn-contact__grid {
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .bn-contact__grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
.bn-contact__info .bn-section__title { text-align: left; }
.bn-contact__info .bn-section__lead  { text-align: left; margin: 0 0 28px; }

.bn-contact__list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 18px;
}
.bn-contact__list li {
    display: grid; gap: 4px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bn-line);
    border-radius: var(--bn-radius-sm);
    box-shadow: var(--bn-shadow-xs);
}
.bn-contact__list strong {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    color: var(--bn-orange);
    font-weight: 700;
}
.bn-contact__list a { color: var(--bn-ink); text-decoration: none; font-weight: 500; }
.bn-contact__list a:hover { color: var(--bn-orange-600); }

/* Form */
.bn-form {
    background: rgba(12, 14, 24, 0.75);
    border-radius: var(--bn-radius);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: 0 40px 100px -20px rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(255,255,255,0.08);
    display: grid;
    gap: 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.bn-form__row {
    display: grid; gap: 18px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) {
    .bn-form__row { grid-template-columns: 1fr 1fr; }
}
.bn-field { display: grid; gap: 6px; }
.bn-field__label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .02em;
}
.bn-field input,
.bn-field textarea,
.bn-field select {
    font-family: var(--bn-font);
    font-size: 15px;
    color: #fff;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--bn-radius-sm);
    background: rgba(8, 10, 16, 0.5);
    transition: border-color var(--bn-fast), box-shadow var(--bn-fast);
    width: 100%;
}
.bn-field textarea { resize: vertical; min-height: 130px; }
.bn-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 42px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'><path d='M5.25 7.5 10 12.25 14.75 7.5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px 18px;
}
.bn-field input:focus,
.bn-field textarea:focus,
.bn-field select:focus {
    outline: none;
    border-color: var(--bn-orange);
    box-shadow: 0 0 0 4px rgba(16,185,129,0.25);
}
.bn-field input[aria-invalid="true"],
.bn-field textarea[aria-invalid="true"],
.bn-field select[aria-invalid="true"] {
    border-color: #f43f5e;
    box-shadow: 0 0 0 4px rgba(244,63,94,0.25);
}

.bn-hp { position: absolute !important; left: -9999px !important; opacity: 0; }

.bn-form__actions {
    display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
}
.bn-form__status {
    margin: 0; font-size: 14px; color: var(--bn-muted);
    min-height: 1.4em;
}
.bn-form__status.is-success { color: #10b981; }
.bn-form__status.is-error   { color: #f43f5e; }

/* ---------- Footer ---------- */
.bn-footer {
    background: linear-gradient(180deg, #090b11 0%, #050609 100%);
    color: rgba(255,255,255,.65);
    padding: 40px 0 0;
    font-size: 14px;
    border-top: 1px solid rgba(139, 92, 246, .15);
}
.bn-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
}
.bn-footer p { margin: 0; }
.bn-footer a { color: var(--bn-orange); text-decoration: none; }
.bn-footer a:hover { color: #fff; }

/* ---------- Reveal ---------- */
.bn-reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity .7s var(--bn-ease), transform .7s var(--bn-ease);
    will-change: opacity, transform;
}
.bn-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Focus visible ---------- */
.zerosuite-landing-page a:focus-visible,
.zerosuite-landing-page button:focus-visible,
.zerosuite-landing-page input:focus-visible,
.zerosuite-landing-page textarea:focus-visible,
.zerosuite-landing a:focus-visible,
.zerosuite-landing button:focus-visible {
    outline: 2px solid var(--bn-orange);
    outline-offset: 3px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .bn-reveal { opacity: 1; transform: none; }
}

/* ---------- Projects / Casos de éxito ---------- */
.bn-projects {
    background:
    radial-gradient(800px 420px at 0% 0%, rgba(139, 92, 246, .05), transparent 60%),
        var(--bn-bg-soft);
}
.bn-projects__list {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.bn-project {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bn-line);
    border-radius: var(--bn-radius);
    padding: 22px 22px;
    display: flex; flex-direction: column; gap: 6px;
    transition: transform var(--bn-fast), box-shadow var(--bn-fast), border-color var(--bn-fast);
}
.bn-project:hover { transform: translateY(-4px); box-shadow: var(--bn-shadow); border-color: rgba(16, 185, 129, 0.2); background: rgba(255, 255, 255, 0.04); }
.bn-project__client {
    font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
    color: var(--bn-orange); font-weight: 700;
}
.bn-project__name {
    font-size: 1.05rem; color: var(--bn-ink); font-weight: 600;
}
.bn-project__link {
    color: inherit; text-decoration: none;
    display: flex; flex-direction: column; gap: 6px;
}
.bn-project__link:hover .bn-project__name { color: var(--bn-orange); }

/* ---------- Consent checkbox ---------- */
.bn-consent {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--bn-ink-soft);
    margin: 4px 0 8px;
}
.bn-consent input[type="checkbox"] {
    margin-top: 3px; flex-shrink: 0;
    width: 16px; height: 16px;
    accent-color: var(--bn-orange);
}

/* ============================================================
   COMERCIAL — Hero KPIs, logo strip, industrias, testimonios,
   footer enriquecido, WhatsApp FAB.
   ============================================================ */

/* --- Hero KPIs (debajo de los CTAs) --- */
.bn-hero__kpis {
    list-style: none; margin: 40px 0 0; padding: 0;
    display: grid;
    gap: 20px 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    border-top: 1px solid rgba(255,255,255,.18);
    padding-top: 28px;
}
@media (min-width: 720px) {
    .bn-hero__kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.bn-hero__kpis li {
    display: flex; flex-direction: column; gap: 4px;
}
.bn-hero__kpis strong {
    font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.02em;
    background: linear-gradient(120deg, var(--bn-orange) 0%, var(--bn-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.bn-hero__kpis span {
    font-size: 12.5px;
    color: rgba(255,255,255,.78);
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1.3;
}

/* --- Logo strip bajo el hero (social proof) --- */
.bn-logostrip {
    background: var(--bn-bg-soft);
    border-bottom: 1px solid var(--bn-line);
    padding: 28px 0 24px;
}
.bn-logostrip__caption {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--bn-muted);
    margin: 0 0 16px;
}
.bn-logostrip__list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 28px 44px;
}
.bn-logostrip__list img {
    max-height: 32px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.45);
    transition: opacity var(--bn-fast), filter var(--bn-fast);
}
.bn-logostrip__list li:hover img { opacity: 0.9; filter: brightness(0) invert(1); }

/* --- Industrias --- */
.bn-industries {
    background:
    radial-gradient(700px 380px at 100% 0%, rgba(139, 92, 246, .06), transparent 60%),
        var(--bn-ink-2);
    border-top: 1px solid rgba(255,255,255,0.03);
}
.bn-industries__grid {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) { .bn-industries__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .bn-industries__grid { grid-template-columns: repeat(8, 1fr); } }

.bn-industry {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bn-line);
    border-radius: var(--bn-radius);
    padding: 22px 14px;
    text-align: center;
    transition: transform var(--bn-fast), box-shadow var(--bn-fast), border-color var(--bn-fast), background-color var(--bn-fast);
    position: relative;
}
.bn-industry::before {
    content: "";
    display: block;
    width: 36px; height: 36px;
    margin: 0 auto 10px;
    background-color: var(--bn-orange);
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    transition: background-color var(--bn-fast), transform var(--bn-fast);
}
.bn-industry:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--bn-shadow);
}
.bn-industry:hover::before { background-color: var(--bn-orange); transform: scale(1.08); }
.bn-industry__name {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--bn-ink);
}

/* Iconos de industria — máscara SVG (un solo color, modernos, sin imágenes) */
.bn-industry[data-icon="building"]::before  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3 21V5a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v16h3v-9h2a2 2 0 0 1 2 2v7h-2v-2h-1v2H3zm4-12h2V7H7v2zm0 4h2v-2H7v2zm0 4h2v-2H7v2zm4-8h2V7h-2v2zm0 4h2v-2h-2v2zm0 4h2v-2h-2v2z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3 21V5a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v16h3v-9h2a2 2 0 0 1 2 2v7h-2v-2h-1v2H3zm4-12h2V7H7v2zm0 4h2v-2H7v2zm0 4h2v-2H7v2zm4-8h2V7h-2v2zm0 4h2v-2h-2v2zm0 4h2v-2h-2v2z'/></svg>"); }
.bn-industry[data-icon="mining"]::before    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M14.7 6.3 17.6 9l-1.4 1.4-2.9-2.9-1.7 1.6 5.4 5.5-1.4 1.5-1.5-1.4-7.4 7.5a1 1 0 0 1-1.4 0l-1.4-1.4a1 1 0 0 1 0-1.4l7.4-7.5L9.8 9 8.4 7.6l1.6-1.7L7.1 3l1.4-1.4 2.9 2.9 1.6-1.7 5.5 5.5L17.1 9.7l-2.4-2.4z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M14.7 6.3 17.6 9l-1.4 1.4-2.9-2.9-1.7 1.6 5.4 5.5-1.4 1.5-1.5-1.4-7.4 7.5a1 1 0 0 1-1.4 0l-1.4-1.4a1 1 0 0 1 0-1.4l7.4-7.5L9.8 9 8.4 7.6l1.6-1.7L7.1 3l1.4-1.4 2.9 2.9 1.6-1.7 5.5 5.5L17.1 9.7l-2.4-2.4z'/></svg>"); }
.bn-industry[data-icon="education"]::before { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 3 1 9l11 6 9-4.91V17h2V9zM5 13.18v4L12 21l7-3.82v-4L12 17z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 3 1 9l11 6 9-4.91V17h2V9zM5 13.18v4L12 21l7-3.82v-4L12 17z'/></svg>"); }
.bn-industry[data-icon="retail"]::before    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M7 4h10l1 4h2v2h-1l-1 11H6L5 10H4V8h2zm2 6v8h2v-8zm4 0v8h2v-8zM9 6v2h6V6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M7 4h10l1 4h2v2h-1l-1 11H6L5 10H4V8h2zm2 6v8h2v-8zm4 0v8h2v-8zM9 6v2h6V6z'/></svg>"); }
.bn-industry[data-icon="finance"]::before   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 1 2 6v2h20V6zM4 10v8H2v2h20v-2h-2v-8h-2v8h-3v-8h-2v8h-2v-8H9v8H6v-8z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 1 2 6v2h20V6zM4 10v8H2v2h20v-2h-2v-8h-2v8h-3v-8h-2v8h-2v-8H9v8H6v-8z'/></svg>"); }
.bn-industry[data-icon="gear"]::before      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='m19.4 13 1.6-1.3-1.7-3-2 .8-1.6-.9-.3-2.1h-3.4l-.3 2.1-1.7.9-2-.8-1.7 3 1.7 1.3v1.9l-1.7 1.3 1.7 3 2-.8 1.7.9.3 2.1h3.4l.3-2.1 1.6-.9 2 .8 1.7-3-1.6-1.3v-1.9zM12 15.3a3.3 3.3 0 1 1 0-6.6 3.3 3.3 0 0 1 0 6.6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='m19.4 13 1.6-1.3-1.7-3-2 .8-1.6-.9-.3-2.1h-3.4l-.3 2.1-1.7.9-2-.8-1.7 3 1.7 1.3v1.9l-1.7 1.3 1.7 3 2-.8 1.7.9.3 2.1h3.4l.3-2.1 1.6-.9 2 .8 1.7-3-1.6-1.3v-1.9zM12 15.3a3.3 3.3 0 1 1 0-6.6 3.3 3.3 0 0 1 0 6.6z'/></svg>"); }
.bn-industry[data-icon="tech"]::before      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-5l1 2h2v2H6v-2h2l1-2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm0 2v9h16V6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-5l1 2h2v2H6v-2h2l1-2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm0 2v9h16V6z'/></svg>"); }

/* --- Testimonios --- */
.bn-testimonials {
    background: linear-gradient(180deg, var(--bn-bg-soft) 0%, #ffffff 100%);
}
.bn-testimonials__grid {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.bn-testimonial {
    background: #fff;
    border: 1px solid var(--bn-line);
    border-radius: var(--bn-radius);
    padding: 30px 28px;
    box-shadow: var(--bn-shadow-xs);
    position: relative;
    display: flex; flex-direction: column; gap: 18px;
}
.bn-testimonial::before {
    content: "“";
    position: absolute; top: -10px; left: 18px;
    font-family: Georgia, serif;
    font-size: 64px; line-height: 1;
    color: var(--bn-orange);
    opacity: .25;
}
.bn-testimonial__quote {
    margin: 0;
    font-size: 15.5px;
    color: var(--bn-ink-soft);
    line-height: 1.6;
    font-style: italic;
}
.bn-testimonial__meta { display: grid; gap: 2px; }
.bn-testimonial__meta strong { color: var(--bn-ink); font-size: 14.5px; }
.bn-testimonial__meta span   { color: var(--bn-muted); font-size: 13px; }

/* --- Footer enriquecido (sobreescribe el footer simple anterior) --- */
.bn-footer { padding: 40px 0 0; }
.bn-footer__grid {
    display: grid;
    gap: 36px;
    grid-template-columns: 1fr;
    padding-bottom: 36px;
}
@media (min-width: 700px)  { .bn-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.bn-footer__col h4 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 16px;
    font-weight: 700;
}
.bn-footer__col ul {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 8px;
    font-size: 14px;
}
.bn-footer__col a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: color var(--bn-fast);
    display: inline-flex; align-items: center; gap: 8px;
}
.bn-footer__col a:hover { color: var(--bn-orange); }
.bn-footer__col--brand .bn-footer__logo {
    height: 40px; width: auto; max-width: 160px;
    filter: brightness(0) invert(1);
    margin-bottom: 14px;
}
.bn-footer__tagline {
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: 13.5px;
    line-height: 1.55;
    max-width: 320px;
}
.bn-footer__social a svg { color: var(--bn-teal); transition: color var(--bn-fast); }
.bn-footer__social a:hover svg { color: var(--bn-orange); }

.bn-footer__bottom {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 12px 24px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
    color: rgba(255,255,255,.55);
}
.bn-footer__bottom p { margin: 0; }
.bn-footer__bottom a { color: rgba(255,255,255,.72); text-decoration: none; }
.bn-footer__bottom a:hover { color: var(--bn-orange); }

/* --- WhatsApp FAB (botón flotante) --- */
.bn-wa-fab {
    position: fixed;
    right: 22px; bottom: 22px;
    z-index: 90;
    width: 58px; height: 58px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 30px rgba(37,211,102,.35), 0 4px 10px rgba(0,0,0,.18);
    transition: transform var(--bn-fast), box-shadow var(--bn-fast), background-color var(--bn-fast);
    text-decoration: none;
}
.bn-wa-fab::before {
    content: "";
    position: absolute; inset: -6px;
    border-radius: 999px;
    background: rgba(37,211,102,.35);
    z-index: -1;
    animation: bn-wa-pulse 2.4s ease-out infinite;
}
.bn-wa-fab:hover {
    background: #1ea855;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(37,211,102,.45), 0 6px 14px rgba(0,0,0,.22);
}
@keyframes bn-wa-pulse {
    0%   { transform: scale(.9); opacity: .6; }
    70%  { transform: scale(1.4); opacity: 0;  }
    100% { transform: scale(1.4); opacity: 0;  }
}
@media (max-width: 480px) {
    .bn-wa-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
    .bn-wa-fab svg { width: 26px; height: 26px; }
}

/* ============================================================
   SEOLY-INSPIRED — Credenciales, Por qué, Testimonio destacado, FAQ
   ============================================================ */

/* --- Credenciales (banda blanca con sellos checkmark) --- */
.bn-creds {
    background: #ffffff;
    border-bottom: 1px solid var(--bn-line);
    padding: 24px 0;
}
.bn-creds__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 14px 28px;
}
.bn-cred {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(16, 185, 129, .1), rgba(139, 92, 246, .1));
    border: 1px solid rgba(139, 92, 246, .2);
}
.bn-cred__icon { color: var(--bn-orange); flex-shrink: 0; }
.bn-cred__text { display: flex; flex-direction: column; line-height: 1.15; }
.bn-cred__text strong { font-size: 13.5px; color: var(--bn-ink); font-weight: 700; letter-spacing: .01em; }
.bn-cred__text span   { font-size: 11.5px; color: var(--bn-muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

/* --- Por qué ZeroSuite (lista numerada editorial) --- */
.bn-why {
    background:
    radial-gradient(800px 400px at 0% 0%, rgba(139, 92, 246, .05), transparent 60%),
        var(--bn-ink-2);
    border-top: 1px solid rgba(255,255,255,0.03);
}
.bn-why__wrap { display: grid; gap: 48px; }
@media (min-width: 900px) { .bn-why__wrap { grid-template-columns: 1fr 1.2fr; align-items: start; gap: 64px; } }
.bn-why__head { max-width: 460px; }
.bn-why__eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--bn-orange-50);
    color: var(--bn-orange);
    font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase;
}
.bn-why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 28px; }
.bn-why__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px dashed var(--bn-line);
}
.bn-why__item:last-child { border-bottom: 0; padding-bottom: 0; }
.bn-why__num {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
    background: linear-gradient(135deg, var(--bn-orange) 0%, var(--bn-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-width: 60px;
}
.bn-why__title { margin: 4px 0 6px; font-size: 19px; color: var(--bn-ink); font-weight: 700; }
.bn-why__text  { margin: 0; color: var(--bn-ink-soft); font-size: 15.5px; line-height: 1.65; }

/* --- Testimonio destacado (card grande, comilla indigo) --- */
.bn-testimonial-feature {
    background:
    radial-gradient(900px 500px at 50% 0%, rgba(139, 92, 246, .08), transparent 70%),
        var(--bn-bg-soft);
}
.bn-testimonial-card {
    max-width: 880px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: calc(var(--bn-radius) + 6px);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--bn-shadow);
    padding: 56px 48px 40px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 600px) { .bn-testimonial-card { padding: 44px 24px 28px; } }
.bn-testimonial-card__mark {
    width: 52px; height: 52px;
    fill: var(--bn-orange);
    opacity: .85;
    margin-bottom: 18px;
}
.bn-testimonial-card__quote {
    margin: 0 0 28px;
    font-size: clamp(18px, 1rem + .8vw, 22px);
    line-height: 1.55;
    color: var(--bn-ink);
    font-weight: 500;
    font-style: normal;
}
.bn-testimonial-card__meta {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 12px 20px;
    padding-top: 18px;
    border-top: 1px solid var(--bn-line);
}
.bn-testimonial-card__meta > div { display: flex; flex-direction: column; gap: 2px; }
.bn-testimonial-card__meta strong { color: var(--bn-ink); font-size: 15px; }
.bn-testimonial-card__meta span   { color: var(--bn-muted); font-size: 13px; }
.bn-testimonial-card__badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bn-orange), var(--bn-orange-600));
    color: #fff !important;
    font-size: 12px; font-weight: 700;
    letter-spacing: .03em;
    text-shadow: 0 1px 2px rgba(0,0,0,.15);
}

/* --- FAQ accordion (details/summary nativo) --- */
.bn-faq { background: var(--bn-ink-2); border-top: 1px solid rgba(255,255,255,0.03); }
.bn-faq__wrap { max-width: 900px; margin: 0 auto; }
.bn-faq__list { display: grid; gap: 14px; margin-top: 36px; }
.bn-faq__item {
    background: var(--bn-bg-soft);
    border: 1px solid var(--bn-line);
    border-radius: var(--bn-radius);
    overflow: hidden;
    transition: box-shadow var(--bn-fast), border-color var(--bn-fast), background-color var(--bn-fast);
}
.bn-faq__item[open] {
    background: #fff;
    border-color: rgba(79,70,229,.35);
    box-shadow: var(--bn-shadow-xs);
}
.bn-faq__q {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--bn-ink);
    transition: color var(--bn-fast);
}
.bn-faq__q::-webkit-details-marker { display: none; }
.bn-faq__q::marker { content: ""; }
.bn-faq__q:hover { color: var(--bn-orange-600); }
.bn-faq__chev {
    color: var(--bn-teal-600);
    transition: transform var(--bn-med);
    flex-shrink: 0;
}
.bn-faq__item[open] .bn-faq__chev { transform: rotate(180deg); }
.bn-faq__a {
    padding: 0 22px 22px;
    color: var(--bn-ink-soft);
    font-size: 15px;
    line-height: 1.65;
    animation: bn-faq-open .25s ease-out;
}
.bn-faq__a p { margin: 0; }
@keyframes bn-faq-open {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Eyebrow genérico para section heads (reutilizable) */
.bn-section__eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(79,70,229,.08), rgba(20,184,166,.08));
    color: var(--bn-orange-600);
    font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase;
}


/* ==========================================================================
   CASOS DE EXITO - single + archive (CPT bn_case)
   ========================================================================== */

.bn-nav--inner { background: rgba(255,255,255,.96); border-bottom: 1px solid var(--bn-line); backdrop-filter: blur(8px); }
.bn-nav--inner .bn-nav__menu a { color: var(--bn-ink); }
.bn-nav--inner .bn-nav__menu a:hover { color: var(--bn-orange-600); }
.bn-nav--inner .bn-btn--ghost { color: var(--bn-orange-600); border-color: var(--bn-orange-600); }
.bn-nav--inner .bn-btn--ghost:hover { background: var(--bn-orange); color: #fff; border-color: var(--bn-orange); }

.bn-case-hero {
    position: relative;
    padding: 100px 0 64px;
    background: linear-gradient(180deg, #0b1220 0%, #111a2e 100%);
    color: #fff;
    overflow: hidden;
}
.bn-case-hero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(900px 500px at 0% 0%, rgba(79,70,229,.18), transparent 60%),
        radial-gradient(900px 500px at 100% 100%, rgba(37,99,235,.22), transparent 60%);
    pointer-events: none;
}
.bn-case-hero__inner { position: relative; z-index: 1; }
.bn-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: 13px; margin-bottom: 28px; }
.bn-breadcrumbs a { color: rgba(255,255,255,.85); text-decoration: none; }
.bn-breadcrumbs a:hover { color: var(--bn-orange); }
.bn-breadcrumbs__current { color: rgba(255,255,255,.95); }
.bn-case-hero__client {
    display: inline-block; margin: 0 0 14px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(79,70,229,.14); color: var(--bn-orange-600);
    font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.bn-case-hero__title { margin: 0 0 16px; font-weight: 800; line-height: 1.1; font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem); }
.bn-case-hero__subtitle { margin: 0 0 32px; color: rgba(255,255,255,.85); font-size: clamp(1.05rem, .95rem + .5vw, 1.25rem); max-width: 740px; }
.bn-case-hero__meta { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 16px 36px; }
.bn-case-hero__meta li { display: flex; flex-direction: column; gap: 2px; }
.bn-case-hero__meta span { color: rgba(255,255,255,.55); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.bn-case-hero__meta strong { color: #fff; font-size: 14.5px; font-weight: 600; }

.bn-case-kpis { background: var(--bn-bg-soft); padding: 36px 0; border-bottom: 1px solid var(--bn-line); }
.bn-case-kpis__grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
.bn-case-kpis__value {
    display: block; font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.6rem); font-weight: 800;
    background: linear-gradient(120deg, var(--bn-orange) 0%, var(--bn-teal) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1;
}
.bn-case-kpis__label { display: block; margin-top: 6px; color: var(--bn-muted); font-size: 13.5px; }

.bn-case-body { padding: 64px 0; }
.bn-case-body__grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 900px) {
    .bn-case-body__grid { grid-template-columns: 1.6fr 1fr; align-items: start; }
}
.bn-case-block { margin-bottom: 40px; }
.bn-case-block__title { font-size: clamp(1.4rem, 1.1rem + .8vw, 1.8rem); font-weight: 700; margin: 0 0 14px; color: var(--bn-ink); }
.bn-case-block__title::before { content: ""; display: inline-block; width: 28px; height: 3px; vertical-align: middle; margin-right: 12px; background: linear-gradient(90deg, var(--bn-orange), var(--bn-teal)); border-radius: 2px; }
.bn-case-quote { margin: 40px 0 0; padding: 32px 28px; background: var(--bn-bg-soft); border-left: 4px solid var(--bn-orange); border-radius: var(--bn-radius); }
.bn-case-quote__mark { width: 28px; height: 28px; color: var(--bn-orange); }
.bn-case-quote blockquote { margin: 8px 0 12px; padding: 0; font-size: 1.1rem; line-height: 1.55; color: var(--bn-ink); font-weight: 500; }
.bn-case-quote figcaption { color: var(--bn-muted); font-size: 14px; }

.bn-case-aside__card { background: #fff; border: 1px solid var(--bn-line); border-radius: var(--bn-radius-lg); padding: 28px 26px; box-shadow: var(--bn-shadow-xs); position: sticky; top: 100px; }
.bn-case-aside__card h3 { margin: 0 0 16px; font-size: 1.1rem; }
.bn-case-aside__h4 { margin: 22px 0 10px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--bn-muted); font-weight: 700; }
.bn-case-aside__dl { margin: 0; }
.bn-case-aside__dl dt { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--bn-muted); font-weight: 700; margin-top: 12px; }
.bn-case-aside__dl dt:first-child { margin-top: 0; }
.bn-case-aside__dl dd { margin: 4px 0 0; font-weight: 600; color: var(--bn-ink); font-size: 14.5px; }
.bn-case-aside__chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.bn-case-aside__chips li { padding: 4px 10px; border-radius: 999px; background: rgba(37,99,235,.08); color: var(--bn-teal-600); font-size: 12px; font-weight: 600; }
.bn-case-aside__cta { display: block; text-align: center; margin-top: 22px; }

.bn-case-related { background: var(--bn-bg-soft); }
.bn-case-related__grid,
.bn-case-archive__grid { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.bn-case-card a { display: block; height: 100%; background: #fff; border: 1px solid var(--bn-line); border-radius: var(--bn-radius); padding: 24px 22px; text-decoration: none; color: inherit; transition: transform var(--bn-fast), box-shadow var(--bn-fast), border-color var(--bn-fast); }
.bn-case-card a:hover { transform: translateY(-3px); box-shadow: var(--bn-shadow); border-color: var(--bn-orange); }
.bn-case-card__client { display: inline-block; padding: 3px 10px; border-radius: 999px; background: var(--bn-orange-50); color: var(--bn-orange-600); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.bn-case-card__title { margin: 0 0 8px; font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--bn-ink); }
.bn-case-card__sub { margin: 0 0 14px; color: var(--bn-ink-soft); font-size: 14.5px; line-height: 1.5; }
.bn-case-card__meta { display: flex; gap: 14px; flex-wrap: wrap; color: var(--bn-muted); font-size: 12.5px; margin: 0 0 14px; }
.bn-case-card__meta span::before { content: ". "; color: var(--bn-line); }
.bn-case-card__meta span:first-child::before { content: ""; }
.bn-case-card__more { color: var(--bn-orange-600); font-weight: 600; font-size: 14px; }

.bn-case-archive-hero { padding: 100px 0 56px; background: linear-gradient(180deg, #0b1220 0%, #111a2e 100%); color: #fff; text-align: center; }
.bn-case-archive-hero h1 { margin: 14px 0 18px; font-weight: 800; font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.4rem); }
.bn-case-archive-hero .bn-eyebrow { color: var(--bn-orange); }
.bn-case-archive-hero .bn-section__lead { color: rgba(255,255,255,.85); max-width: 720px; margin: 0 auto; }

.bn-case-cta { background: linear-gradient(120deg, var(--bn-orange) 0%, #ffb858 100%); color: #fff; text-align: center; }
.bn-case-cta__inner { max-width: 720px; margin: 0 auto; }
.bn-case-cta h2 { margin: 0 0 10px; font-size: clamp(1.6rem, 1.3rem + 1vw, 2.2rem); font-weight: 800; }
.bn-case-cta p { margin: 0 0 24px; color: rgba(255,255,255,.95); font-size: 1.05rem; }
.bn-case-cta .bn-btn--primary { background: #fff; color: var(--bn-orange-600); border-color: #fff; }
.bn-case-cta .bn-btn--primary:hover { background: var(--bn-ink); color: #fff; border-color: var(--bn-ink); }

.bn-case-archive .pagination,
.bn-case-archive .nav-links { display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.bn-case-archive .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px; border: 1px solid var(--bn-line); border-radius: 8px; text-decoration: none; color: var(--bn-ink); font-weight: 600; }
.bn-case-archive .page-numbers.current { background: var(--bn-orange); color: #fff; border-color: var(--bn-orange); }
.bn-case-archive .page-numbers:hover:not(.current) { border-color: var(--bn-orange); color: var(--bn-orange-600); }

/* ============================================================
   Refinamientos v2 — paginas internas, blog, sombras, oscuros
   ============================================================ */

/* --- Paginas internas: nav transparente sobre el hero oscuro (Bullnet-style).
       El JS añade .bn-nav--scrolled al hacer scroll → vuelve a blanco. --- */
body.zs-inner .bn-nav:not(.bn-nav--scrolled) { background: transparent; box-shadow: none; }
body.zs-inner .bn-nav:not(.bn-nav--scrolled) .bn-nav__brand img { filter: brightness(0) invert(1); }
body.zs-inner .bn-nav:not(.bn-nav--scrolled) .bn-nav__menu a { color: #fff; }
body.zs-inner .bn-nav:not(.bn-nav--scrolled) .bn-nav__menu a:hover { color: #c7d2fe; }
body.zs-inner .bn-nav:not(.bn-nav--scrolled) .bn-btn--ghost { border-color: rgba(255,255,255,.45); color: #fff; }
body.zs-inner .bn-nav:not(.bn-nav--scrolled) .bn-btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* Hero superior de paginas internas — banda con gradiente indigo + textura */
.bn-inner-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--bn-nav-h) + 72px) 0 80px !important;
    background:
        radial-gradient(900px 460px at 90% -10%, rgba(79,70,229,.22), transparent 60%),
        radial-gradient(700px 380px at -10% 110%, rgba(79,70,229,.18), transparent 60%),
        linear-gradient(180deg, #07111f 0%, #0f172a 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.bn-inner-hero::after {
    content: none;
}
.bn-inner-hero .bn-eyebrow { color: #a5b4fc; }
.bn-inner-hero .bn-section__title,
.bn-inner-hero h1 {
    color: #fff;
    font-size: clamp(2.25rem, 1.4rem + 3vw, 3.5rem);
    line-height: 1.1;
    margin: 0 0 18px;
    letter-spacing: -.02em;
}
.bn-inner-hero .bn-section__lead,
.bn-inner-hero p {
    color: rgba(255,255,255,.78);
    font-size: clamp(1.05rem, .95rem + .5vw, 1.25rem);
    max-width: 720px;
    margin: 0 auto;
}
.bn-inner-hero .bn-section__head { margin-bottom: 0; }

/* Breadcrumbs sobre fondo oscuro */
.bn-crumbs {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    color: rgba(255,255,255,.6); font-size: 13px;
    margin: 0 0 28px;
}
.bn-crumbs a { color: rgba(255,255,255,.85); text-decoration: none; transition: color var(--bn-fast); }
.bn-crumbs a:hover { color: #c7d2fe; }
.bn-crumbs__current { color: rgba(255,255,255,.95); }

/* En paginas internas, la primera seccion no necesita padding-top extra */
body.zs-inner .bn-inner-hero + .bn-section { padding-top: clamp(48px, 6vw, 88px); }

/* --- Cards: sombras mas presentes + hover mas marcado --- */
.bn-card {
    box-shadow: var(--bn-shadow);
    border: 1px solid rgba(15,23,42,.06);
    transition: transform var(--bn-fast), box-shadow var(--bn-fast), border-color var(--bn-fast);
}
.bn-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bn-shadow-lg);
    border-color: rgba(79,70,229,.18);
}

/* --- Botones primarios: sombra de marca --- */
.bn-btn--primary,
.bn-hero .bn-btn--primary {
    box-shadow: var(--bn-shadow-brand);
}
.bn-btn--primary:hover { box-shadow: 0 16px 36px -8px rgba(79,70,229,.55); }

/* --- Secciones oscuras: slate en vez de azul muy duro + bordes redondeados --- */
.bn-vision,
.bn-other-services,
.bn-cta-band,
.bn-final-cta {
    background:
        radial-gradient(800px 420px at 90% 0%, rgba(79,70,229,.20), transparent 60%),
        radial-gradient(700px 380px at 0% 100%, rgba(20,184,166,.16), transparent 60%),
        linear-gradient(180deg, #07111f 0%, #0f172a 100%) !important;
    color: rgba(255,255,255,.85);
}
.bn-footer { padding: 40px 0 0; }
.bn-vision *,
.bn-other-services *,
.bn-cta-band *,
.bn-final-cta * { border-color: rgba(255,255,255,.08); }

/* --- Tipografia: subtitulos un punto mas grandes para mejor jerarquia --- */
.bn-section__title { font-size: clamp(1.9rem, 1.25rem + 2.6vw, 3rem); }
.bn-section__lead  { font-size: clamp(1.05rem, .95rem + .4vw, 1.2rem); color: var(--bn-muted); }

/* ============================================================
   Blog (home, archive, single) con chrome de ZeroSuite
   ============================================================ */
.zs-blog {
    padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 112px);
}
.zs-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.zs-blog__card {
    background: #fff;
    border: 1px solid var(--bn-line);
    border-radius: var(--bn-radius-lg);
    overflow: hidden;
    box-shadow: var(--bn-shadow);
    display: flex; flex-direction: column;
    transition: transform var(--bn-fast), box-shadow var(--bn-fast), border-color var(--bn-fast);
}
.zs-blog__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bn-shadow-lg);
    border-color: rgba(79,70,229,.22);
}
.zs-blog__thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #eef2ff 0%, #c7d2fe 100%);
    overflow: hidden;
}
.zs-blog__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zs-blog__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.zs-blog__meta { font-size: 13px; color: var(--bn-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.zs-blog__title { margin: 0; font-size: 1.25rem; font-weight: 700; line-height: 1.3; color: var(--bn-ink); }
.zs-blog__title a { color: inherit; text-decoration: none; transition: color var(--bn-fast); }
.zs-blog__title a:hover { color: var(--bn-orange); }
.zs-blog__excerpt { color: var(--bn-ink-soft); font-size: .98rem; line-height: 1.6; margin: 0; }
.zs-blog__more {
    margin-top: auto;
    color: var(--bn-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
}
.zs-blog__more::after { content: "→"; transition: transform var(--bn-fast); }
.zs-blog__more:hover::after { transform: translateX(4px); }

.zs-blog__empty {
    text-align: center;
    padding: 80px 24px;
    border: 1px dashed var(--bn-line);
    border-radius: var(--bn-radius-lg);
    background: var(--bn-bg-soft);
    color: var(--bn-muted);
}

.zs-blog__pagination {
    margin-top: 48px;
    display: flex; justify-content: center; gap: 8px;
}
.zs-blog__pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 14px;
    border: 1px solid var(--bn-line); border-radius: 10px;
    text-decoration: none; color: var(--bn-ink); font-weight: 600;
    transition: border-color var(--bn-fast), color var(--bn-fast), background var(--bn-fast);
}
.zs-blog__pagination .page-numbers.current {
    background: var(--bn-orange); color: #fff; border-color: var(--bn-orange);
}
.zs-blog__pagination .page-numbers:hover:not(.current) {
    border-color: var(--bn-orange); color: var(--bn-orange);
}

/* Single post */
.zs-post { padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 112px); }
.zs-post__wrap { max-width: 760px; margin: 0 auto; }
.zs-post__meta { font-size: 13px; color: var(--bn-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: 16px; }
.zs-post__content { font-size: 1.075rem; line-height: 1.8; color: var(--bn-ink-soft); }
.zs-post__content h2 { font-size: 1.6rem; margin: 2em 0 .6em; color: var(--bn-ink); }
.zs-post__content h3 { font-size: 1.3rem; margin: 1.6em 0 .5em; color: var(--bn-ink); }
.zs-post__content p  { margin: 0 0 1.1em; }
.zs-post__content a  { color: var(--bn-orange); text-decoration: underline; text-underline-offset: 3px; }
.zs-post__content img { max-width: 100%; height: auto; border-radius: var(--bn-radius); margin: 1.5em 0; }
.zs-post__content blockquote {
    border-left: 4px solid var(--bn-orange);
    padding: 8px 0 8px 20px;
    margin: 1.5em 0;
    color: var(--bn-ink-2);
    font-style: italic;
}
.zs-post__back { display: inline-block; margin-top: 40px; color: var(--bn-orange); font-weight: 600; text-decoration: none; }
.zs-post__back:hover { text-decoration: underline; }


/* ---------- Modules card (tier pill arriba) ---------- */
.bn-card--module {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
}
.bn-card--module::before {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--bn-line);
    transition: background var(--bn-fast);
}
.bn-card--tier-core::before     { background: linear-gradient(180deg, #6366f1, #4338ca); }
.bn-card--tier-premium::before  { background: linear-gradient(180deg, #f59e0b, #d97706); }
.bn-card--tier-standard::before { background: linear-gradient(180deg, #14b8a6, #0d9488); }

.bn-card__tier {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    background: rgba(255,255,255,.6);
}
.bn-card__tier--core     { color: #4338ca; background: #eef2ff; border-color: #c7d2fe; }
.bn-card__tier--premium  { color: #b45309; background: #fffbeb; border-color: #fde68a; }
.bn-card__tier--standard { color: #0f766e; background: #f0fdfa; border-color: #99f6e4; }

.bn-card--module .bn-card__title {
    margin: 6px 0 4px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--bn-ink);
}
.bn-card--module .bn-card__sub {
    margin: 0 0 10px;
    font-size: .92rem;
    font-weight: 600;
    color: var(--bn-orange);
    line-height: 1.4;
}
.bn-card--module .bn-card__text {
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
    color: var(--bn-ink-soft);
}
