html {
    scroll-behavior: smooth;
}

/* === Scroll Progress Bar === */
.baek-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 9999;
    pointer-events: none;
    background: linear-gradient(to right, rgba(15,23,42,0.15), transparent);
}

.baek-scroll-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8, #a855f7, #f97316);
    box-shadow: 0 0 12px rgba(56,189,248,0.6);
    transition: width 0.15s ease-out;
}

/* === Social Proof / Logo Marquee === */
.baek-social-proof {
    padding: 1.75rem 0 0.5rem;
    opacity: 0.95;
}

.baek-social-proof-title {
    font-size: 0.9rem;
    color: #94a3b8;
}

.baek-social-proof-title span {
    color: #e5e7eb;
    font-weight: 500;
}

.baek-logo-marquee {
    overflow: hidden;
    position: relative;
}

.baek-logo-track {
    display: inline-flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: baek-marquee 22s linear infinite;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
}

.baek-logo-track span {
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.3);
    padding: 0.4rem 0.9rem;
    backdrop-filter: blur(10px);
    background: radial-gradient(circle at top left, rgba(148,163,184,0.18), rgba(15,23,42,0.85));
}

@keyframes baek-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Cards Hover State === */
.bringer-price-card-item,
.bringer-block,
.bringer-portfolio-short-item {
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out, background 0.18s ease-out;
}

.bringer-price-card-item:hover,
.bringer-portfolio-short-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(15,23,42,0.45);
    border-color: rgba(148,163,184,0.5);
}

.bringer-price-card-item:hover .bringer-button.is-fullwidth {
    transform: translateY(0);
    box-shadow: 0 12px 30px rgba(56,189,248,0.35);
}

/* Slight gradient background on hover */
.bringer-price-card-item {
    background: radial-gradient(circle at top left, rgba(56,189,248,0.08), rgba(15,23,42,0.95));
    border: 1px solid rgba(148,163,184,0.35);
}

/* === Premium Hover for Medium Block === */
.bringer-block.baek-hover {
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.3s ease,
        border-color 0.3s ease;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-radius: 18px;
}

.bringer-block.baek-hover:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 44px rgba(0,0,0,0.35);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
}

.bringer-portfolio-short-item {
    cursor: pointer;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.bringer-portfolio-short-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15,23,42,0.7);
}