.lp-all-features {
    padding: 80px 0;
    background: var(--lp-bg);
}

.lp-features-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.lp-ftab {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text-sub);
    cursor: pointer;
    transition: all 0.2s;
}

.lp-ftab:hover {
    border-color: var(--lp-primary-border);
    color: var(--lp-primary);
}

.lp-ftab.active {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}

.lp-ftab-content {
    display: none;
}

.lp-ftab-content.active {
    display: block;
}

.lp-fcategory {
    margin-bottom: 24px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 28px;
}

.lp-fcategory h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lp-border);
    color: var(--lp-text);
}

.lp-flist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lp-flist span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-bg-alt);
    border: 1px solid var(--lp-border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--lp-text-sub);
    line-height: 1.4;
    min-width: 160px;
    position: relative;
    cursor: default;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.lp-flist span[data-tip]:hover {
    border-color: var(--lp-primary-border);
    background: var(--lp-primary-bg);
    color: var(--lp-primary-dark);
    z-index: 10;
}

.lp-flist span[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #2d2b3d;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    padding: 10px 16px;
    border-radius: 8px;
    white-space: normal;
    width: max-content;
    max-width: 320px;
    text-align: left;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.12s, visibility 0.12s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 100;
}

.lp-flist span[data-tip]:hover::after {
    opacity: 1;
    visibility: visible;
}

.lp-flist span[data-tip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #2d2b3d;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.12s, visibility 0.12s;
    z-index: 101;
}

.lp-flist span[data-tip]:hover::before {
    opacity: 1;
    visibility: visible;
}