/* ── Stats Bar — Figma pixel-perfect ───────────────────── */
.stats-bar {
    padding: 0;
    background: rgba(10,15,30,0.95);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stats-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    gap: 0;
}

/* ── Partner badge (Iubenda) — leftmost item ── */
.stats-bar__partner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 48px 20px 0;
    margin-right: 0;
    position: relative;
}
/* Divider on the RIGHT of partner */
.stats-bar__partner::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}
.stats-bar__partner-icon {
    width: 18px;
    height: 26px;
    flex-shrink: 0;
    opacity: 0.9;
}
.stats-bar__partner-logo {
    max-height: 28px;
    width: auto;
}
/* "Iubenda Certified Partner" bordered box — Figma */
.stats-bar__partner-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: .02em;
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    white-space: nowrap;
}

/* ── Stat items ── */
.stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 48px;
    position: relative;
}
/* Divider between stat items */
.stats-bar__item + .stats-bar__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}
/* Label: 16px cyan TOP */
.stats-bar__label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #00c3d0;
    line-height: 1.3;
    margin-bottom: 2px;
    white-space: nowrap;
}
/* Number: 40px white Bold BELOW */
.stats-bar__number {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

@media(max-width:1024px) {
    .stats-bar__item { padding: 16px 32px; }
    .stats-bar__partner { padding: 16px 32px 16px 0; }
}
@media(max-width:768px) {
    .stats-bar__inner { flex-wrap: wrap; padding: 24px 0; }
    .stats-bar__item { padding: 12px 20px; }
    .stats-bar__item + .stats-bar__item::before { display: none; }
    .stats-bar__partner { padding: 12px 20px; width: 100%; justify-content: center; }
    .stats-bar__partner::after { display: none; }
    .stats-bar__number { font-size: 32px; }
}
