.bar_b001 {
    max-width: var(--main-width, 1200px);
    margin: 0 auto;
    padding: 2rem 0;
}

.bar_b001-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bar_b001-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333333;
}

.bar_b001-subheading {
    font-size: 1.1rem;
    color: var(--bar_b001-text, #6c757d);
    line-height: 1.6;
}

.bar_b001-grid {
    display: grid;
    grid-template-columns: repeat(var(--bar_b001-cols, 4), 1fr);
    gap: 2rem;
}

.bar_b001-item {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bar_b001-item.bar_b001-visible {
    opacity: 1;
    transform: translateY(0);
}

.bar_b001-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.bar_b001-card:hover {
    transform: translateY(-0.4rem);
}

.bar_b001-hexagon {
    width: 8rem;
    height: 9rem;
    margin: 0 auto 1.5rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--bar_b001-cta-bg, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bar_b001-hexagon::before {
    content: '';
    position: absolute;
    inset: 3px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: #fff;
}

.bar_b001-hexagon i {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    color: var(--bar_b001-primary, #333);
    transition: color 0.3s ease;
}

.bar_b001-card:hover .bar_b001-hexagon {
    transform: scale(1.06);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.bar_b001-card:hover .bar_b001-hexagon i {
    color: #fff;
}

.bar_b001-card:hover .bar_b001-hexagon::before {
    background: var(--bar_b001-cta-bg, #2c3e50);
}

.bar_b001-body {
    flex: 1;
    min-width: 0;
}

.bar_b001-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333333;
}

.bar_b001-content {
    font-size: 1rem;
    color: var(--bar_b001-text, #6c757d);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.bar_b001-cta {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bar_b001-cta-color, #ffffff);
    text-decoration: none;
    letter-spacing: 0.03em;
    background: var(--bar_b001-cta-bg, #2c3e50);
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.bar_b001-cta:hover {
    background: color-mix(in srgb, var(--bar_b001-cta-bg, #2c3e50) 80%, #000);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.bar_b001-cta:active {
    transform: translateY(0);
}

[data-device="phone"] .bar_b001-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

[data-device="phone"] .bar_b001-card {
    padding: 0.75rem;
}

[data-device="pad"] .bar_b001-grid {
    grid-template-columns: repeat(2, 1fr);
}

[data-device="pc"] .bar_b001-grid {
    grid-template-columns: repeat(var(--bar_b001-cols, 4), 1fr);
}